Fix Extend Confirmation long text

This commit is contained in:
Ibnu Maksum
2024-04-22 14:02:33 +07:00
parent 3e89efcf46
commit c0cd197df2
3 changed files with 66 additions and 2 deletions

View File

@ -222,7 +222,7 @@ function Lang($key)
function alphanumeric($str, $tambahan = "")
{
return preg_replace("/[^a-zA-Z0-9" . $tambahan . "]+/", "", $str);
return Text::alphanumeric($str, $tambahan);
}
function showResult($success, $message = '', $result = [], $meta = [])