mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-05 16:14:11 +01:00
* 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:
@@ -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 ** ===
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
@@ -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';
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user