Skip to content

Commit

Permalink
Merge branch 'release/1.7.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric-anne committed Apr 27, 2021
2 parents 3be79ca + 4fd2a74 commit 2057a84
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 32 deletions.
60 changes: 30 additions & 30 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion inc/common.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1298,7 +1298,8 @@ static function selectorForMultipleGroups($field, $condition = [], $label = '')
}

$datas = [];
foreach (getAllDataFromTable('glpi_groups', $condition, false, 'name') as $data) {
$condition['ORDER'] = 'name';
foreach (getAllDataFromTable('glpi_groups', $condition, false) as $data) {
$datas[$data['id']] = $data['completename'];
}

Expand Down
5 changes: 5 additions & 0 deletions mreporting.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ Voir documentation : https://github.com/PluginsGLPI/mreporting/wiki
<author>Infotel</author>
</authors>
<versions>
<version>
<num>1.7.3</num>
<compatibility>~9.5.0</compatibility>
<download_url>https://github.com/pluginsGLPI/mreporting/releases/download/1.7.3/glpi-mreporting-1.7.3.tar.bz2</download_url>
</version>
<version>
<num>1.7.2</num>
<compatibility>~9.5.0</compatibility>
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
--------------------------------------------------------------------------
*/

define ('PLUGIN_MREPORTING_VERSION', '1.7.2');
define ('PLUGIN_MREPORTING_VERSION', '1.7.3');

// Minimal GLPI version, inclusive
define("PLUGIN_MREPORTING_MIN_GLPI", "9.5");
Expand Down

0 comments on commit 2057a84

Please sign in to comment.