1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-01 01:52:18 +01:00
- introduced bug in 0d03c2be29d394a7a8a9c9617481f4b6a5ff0556.
This commit is contained in:
Jean Paul Galea 2015-07-17 10:11:43 +02:00
parent 069660e4ef
commit f3fc957431

View File

@ -61,7 +61,7 @@ function getHttpVal($key, $defaultVal) {
$val = $_POST[$key];
}
$v = trim($val);
$v = str_replace('\\', "", $val);
$v = str_replace('\\', "", $v);
return $v;
}