From bca08071ed646f5a94ad5209e4b6fa35c2644951 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Fri, 12 Apr 2013 19:54:09 +0200 Subject: [PATCH] Fixed small issue --- .../lib/data/user/option/category/UserOptionCategory.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.20.1