diff --git a/CHANGELOG b/CHANGELOG
index 1090e03a1..370acf612 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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 ** ===
diff --git a/ajax/ajax_usrpass.php b/ajax/ajax_usrpass.php
index bbb747be3..74044064e 100644
--- a/ajax/ajax_usrpass.php
+++ b/ajax/ajax_usrpass.php
@@ -79,7 +79,7 @@
-
-
+
diff --git a/ajax/ajax_viewpass.php b/ajax/ajax_viewpass.php
index 6a0c1e4d9..01cba838a 100644
--- a/ajax/ajax_viewpass.php
+++ b/ajax/ajax_viewpass.php
@@ -94,10 +94,10 @@
' . _('Clave') . ' |
- ' . trim($accountClearPass) . ' |
+ ' . htmlentities(trim($accountClearPass)) . ' |
';
echo '';
} else {
- echo trim($accountClearPass);
+ echo htmlentities(trim($accountClearPass));
}
\ No newline at end of file
diff --git a/inc/util.class.php b/inc/util.class.php
index 39c79e193..f4726a7ea 100644
--- a/inc/util.class.php
+++ b/inc/util.class.php
@@ -172,7 +172,7 @@ 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);
}
/**
@@ -180,7 +180,7 @@ public static function getVersion() {
* @return string con la versión
*/
public static function getVersionString() {
- return '1.0-8';
+ return '1.0-9';
}
/**