diff options
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Util/StringUtils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Util/StringUtils.php b/Core/Util/StringUtils.php index b13408a..2e8925d 100644 --- a/Core/Util/StringUtils.php +++ b/Core/Util/StringUtils.php @@ -55,6 +55,6 @@ class StringUtils } // They are only identical strings if $result is exactly 0... - return $result === 0; + return 0 === $result; } } |