2
0
forked from Wavyzz/dolibarr

FIX: Variable declared boolean

This commit is contained in:
Raphaël Doursenaud
2014-09-18 14:52:59 +02:00
committed by Raphaël Doursenaud
parent afcebea440
commit f68cb3bfcb
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ class modUser extends DolibarrModules
// Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
$this->name = preg_replace('/^mod/i','',get_class($this));
$this->description = "Gestion des utilisateurs (requis)";
$this->always_enabled = 1; // Can't be disabled
$this->always_enabled = true; // Can't be disabled
// Possible values for version are: 'development', 'experimental', 'dolibarr' or version
$this->version = 'dolibarr';