From: Marcel Werk Date: Fri, 12 Apr 2013 17:54:09 +0000 (+0200) Subject: Fixed small issue X-Git-Tag: 2.0.0_Beta_1~377 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bca08071ed646f5a94ad5209e4b6fa35c2644951;p=GitHub%2FWoltLab%2FWCF.git Fixed small issue --- diff --git a/wcfsetup/install/files/lib/data/user/option/category/UserOptionCategory.class.php b/wcfsetup/install/files/lib/data/user/option/category/UserOptionCategory.class.php index a43151f000..8ffd1901fb 100644 --- a/wcfsetup/install/files/lib/data/user/option/category/UserOptionCategory.class.php +++ b/wcfsetup/install/files/lib/data/user/option/category/UserOptionCategory.class.php @@ -63,7 +63,7 @@ class UserOptionCategory extends DatabaseObject { $statement = WCF::getDB()->prepareStatement($sql); $statement->execute(array($categoryName)); $row = $statement->fetchArray(); - if ($row === falsch) return null; + if ($row === false) return null; return new UserOptionCategory(null, $row); }