Skip to content

Commit

Permalink
* Closes #29. Fixed error on showing passwords with special character…
Browse files Browse the repository at this point in the history
…s. Thanks again to @chadrempp

* Closes #31. Fixed error on updating user's password. Thanks to @Chuclucillo
  • Loading branch information
nuxsmin committed Apr 10, 2014
1 parent f6ff4ee commit 77aaffb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 ** ===

Expand Down
2 changes: 1 addition & 1 deletion ajax/ajax_usrpass.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<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>
Expand Down
4 changes: 2 additions & 2 deletions ajax/ajax_viewpass.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@
</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));
}
4 changes: 2 additions & 2 deletions inc/util.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,15 @@ public static function curlIsAvailable(){
* @return array con el número de versión
*/
public static function getVersion() {
return array(1, 0, 8);
return array(1, 0, 9);
}

/**
* @brief Devuelve la versión de sysPass
* @return string con la versión
*/
public static function getVersionString() {
return '1.0-8';
return '1.0-9';
}

/**
Expand Down

0 comments on commit 77aaffb

Please sign in to comment.