diff --git a/CHANGELOG b/CHANGELOG index a4ada739d..eec19c5d1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +=== ** v1.0.6 ** === + +* [BUG] Corregido error al crear un usuario de LDAP. +* [MOD] No comprobar los permisos del directorio "config" en Windows. + === ** v1.0.5 ** === * [BUG] Corregido error que no mostraba la configuración. El archivo de plantilla config.php no se encontraba por un error en el empaquetado. @@ -161,6 +166,11 @@ --- +=== ** v1.0.6 ** === + +* [BUG] Fixed error on creating user from LDAP. +* [MOD] Don't check "config" directory permissions on Windows environment. + === ** v1.0.5 ** === * [BUG] Fix blank configuration tab because missing config.php template file that was skipped on building process. diff --git a/inc/util.class.php b/inc/util.class.php index 4da044425..7bda07c13 100644 --- a/inc/util.class.php +++ b/inc/util.class.php @@ -169,7 +169,7 @@ public static function curlIsAvailable(){ * @return array con el número de versión */ public static function getVersion() { - return array(1, 00, 05); + return array(1, 00, 06); } /** @@ -177,7 +177,7 @@ public static function getVersion() { * @return string con la versión */ public static function getVersionString() { - return '1.0-5'; + return '1.0-6'; } /**