Periodical sync from dev FTP

This commit is contained in:
JonatanRek
2020-01-16 14:33:11 +01:00
parent 6f0fa2f81e
commit ad89a18093
6 changed files with 43 additions and 24 deletions

View File

@@ -119,7 +119,7 @@ class Utilities
case '>=': // Greater than or equal to
return $value1 >= $value2;
case '==': // Equal
return $value1 == $value2;
return ($value1 == $value2);
case '===': // Identical
return $value1 === $value2;
case '!==': // Not Identical