aboutsummaryrefslogtreecommitdiff
path: root/app/class/Config.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2020-04-27 13:35:29 +0200
committervincent-peugnet <v.peugnet@free.fr>2020-04-28 20:21:34 +0200
commitcba95c5eb19a33654a6f0995c6f9e0885b7afc20 (patch)
treea334a0fa3c074f44fe41a4114ea1853ac7f6c0e3 /app/class/Config.php
parentc832f91ca41490f69f478045c86038f9ef4a5cb5 (diff)
downloadwcms-cba95c5eb19a33654a6f0995c6f9e0885b7afc20.tar.gz
wcms-cba95c5eb19a33654a6f0995c6f9e0885b7afc20.zip
fix password max size
add error in hydrate
Diffstat (limited to 'app/class/Config.php')
-rw-r--r--app/class/Config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/class/Config.php b/app/class/Config.php
index c982827..b629bc5 100644
--- a/app/class/Config.php
+++ b/app/class/Config.php
@@ -314,7 +314,7 @@ abstract class Config
public static function setalertlink($alertlink)
{
if (is_string($alertlink)) {
- self::$alertlink = idclean(strip_tags($alertlink));
+ self::$alertlink = idclean($alertlink);
}
}