* Closes #29. Fixed error on showing passwords with special characters. Thanks again to @chadrempp

* Closes #31. Fixed error on updating user's password. Thanks to @Chuclucillo
This commit is contained in:
nuxsmin
2014-04-10 21:35:01 +02:00
parent f6ff4ee30b
commit 77aaffbf9f
4 changed files with 14 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
=== ** v1.0.9 ** ===
* [BUG] Corregido error al mostrar claves con carácteres especiales
* [BUG] Corregido error al guardar claves de usuarios
=== ** v1.0.8 ** ===
* [BUG] Corregido error al guardar claves con carácteres especiales
@@ -178,6 +183,10 @@
* [NUEVO] Versión inicial
---
=== ** v1.0.9 ** ===
* [BUG] Fixed error on showing passwords with special characters. Thanks again to @chadrempp
* [BUG] Fixed error on updating user's password. Thanks to @Chuclucillo
=== ** v1.0.8 ** ===

View File

@@ -79,7 +79,7 @@ SP_Users::checkUserAccess("acceditpass",$userId) || die ($strError);
<div class="action-in-box">
<ul>
<li>
<img src="imgs/check.png" title="<?php echo _('Guardar'); ?>" class="inputImg" OnClick="appMgmtSave('frmUpdUsrPass')" alt="<?php echo _('Guardar'); ?>"/>
<img src="imgs/check.png" title="<?php echo _('Guardar'); ?>" class="inputImg" OnClick="usersMgmt('frmUpdUsrPass')" alt="<?php echo _('Guardar'); ?>"/>
</li>
</ul>
</div>

View File

@@ -94,10 +94,10 @@ if ($fullTxt) {
</tr>
<tr>
<td><span class="altTxtBlue">' . _('Clave') . '</span></td>
<td>' . trim($accountClearPass) . '</td>
<td>' . htmlentities(trim($accountClearPass)) . '</td>
</tr>
</table>';
echo '</div>';
} else {
echo trim($accountClearPass);
echo htmlentities(trim($accountClearPass));
}

View File

@@ -172,7 +172,7 @@ class SP_Util {
* @return array con el número de versión
*/
public static function getVersion() {
return array(1, 0, 8);
return array(1, 0, 9);
}
/**
@@ -180,7 +180,7 @@ class SP_Util {
* @return string con la versión
*/
public static function getVersionString() {
return '1.0-8';
return '1.0-9';
}
/**