Skip to content

Commit 27efe4d

Browse files
authored
1.0.3 (#59)
* 1.0.3 * fix CS
1 parent 0a376a0 commit 27efe4d

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [UNRELEASE]
99

10+
## [1.0.3] - 2025-07-10
11+
1012
### Fixed
1113

1214
- Do not disclose `password` from `form` input.

databaseinventory.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@
2626
<compatibility>~11.0.0</compatibility>
2727
<download_url>https://github.com/pluginsGLPI/databaseinventory/releases/download/1.1.0-beta1/glpi-databaseinventory-1.1.0-beta1.tar.bz2</download_url>
2828
</version>
29+
<version>
30+
<num>1.0.3</num>
31+
<compatibility>~10.0.0</compatibility>
32+
<download_url>https://github.com/pluginsGLPI/databaseinventory/releases/download/1.0.3/glpi-databaseinventory-1.0.3.tar.bz2</download_url>
33+
</version>
2934
<version>
3035
<num>1.0.2</num>
3136
<compatibility>~10.0.0</compatibility>

inc/profile.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class PluginDatabaseinventoryProfile extends Profile
3232
{
3333
public static $rightname = 'profile';
3434

35-
const RUN_DATABSE_INVENTORY = 256;
35+
public const RUN_DATABSE_INVENTORY = 256;
3636

3737
public static function getTypeName($nb = 0)
3838
{
@@ -61,7 +61,7 @@ private static function getAllRights($all = false)
6161
return $rights;
6262
}
6363

64-
function getRights($interface = 'central')
64+
public function getRights($interface = 'central')
6565
{
6666
$rights = parent::getRights();
6767
$rights[self::RUN_DATABSE_INVENTORY] = __("Run database inventory", "databaseinventory");

setup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* -------------------------------------------------------------------------
2929
*/
3030

31-
define('PLUGIN_DATABASEINVENTORY_VERSION', '1.0.2');
31+
define('PLUGIN_DATABASEINVENTORY_VERSION', '1.0.3');
3232

3333
// Minimal GLPI version, inclusive
3434
define('PLUGIN_DATABASEINVENTORY_MIN_GLPI', '10.0.0');

0 commit comments

Comments
 (0)