Update security.php
This commit is contained in:
parent
fea186e5ee
commit
8d36ff42e3
|
@ -186,6 +186,10 @@ if(!function_exists("get_hashed_text")) {
|
||||||
break;
|
break;
|
||||||
case "crypt":
|
case "crypt":
|
||||||
$hashed_text = crypt($text);
|
$hashed_text = crypt($text);
|
||||||
|
break;
|
||||||
|
case "base64":
|
||||||
|
$hashed_text = base64_encode($text);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
$hashed_text = "";
|
$hashed_text = "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user