Fixed disabled signatures
authorMarcel Werk <burntime@woltlab.com>
Sat, 1 Jun 2013 14:10:54 +0000 (16:10 +0200)
committerMarcel Werk <burntime@woltlab.com>
Sat, 1 Jun 2013 14:10:54 +0000 (16:10 +0200)
wcfsetup/install/files/lib/data/user/UserProfile.class.php

index a4fd8d1b12e6e0171a9a66a40137932c3563c341..da7b8acea5f70d05c25647ebfbfa778b562f5c32 100644 (file)
@@ -680,7 +680,7 @@ class UserProfile extends DatabaseObjectDecorator implements IBreadcrumbProvider
         */
        public function showSignature() {
                if (!$this->signature) return false;
-               if ($this->disabledSignature) return false;
+               if ($this->disableSignature) return false;
                if (WCF::getUser()->userID && !WCF::getUser()->showSignature) return false;
                
                return true;