Fix Util::result

This commit is contained in:
Ely Deckers 2022-02-20 21:45:42 +01:00
parent 3ff4bb44b7
commit 835816aab0
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ class Util
public static function result($result, bool $echo_result = false)
{
if ($echo_result) {
echo $echo_result;
echo $result;
}
return $result;