Fixes object property access in ProcessibleDBO
authorMatthias Schmidt <gravatronics@live.com>
Fri, 20 Apr 2012 08:41:57 +0000 (10:41 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Fri, 20 Apr 2012 08:41:57 +0000 (10:41 +0200)
wcfsetup/install/files/lib/data/ProcessibleDatabaseObject.class.php

index b525f106519e6666da6a0f31124821aa33d4d169..ad9660a82b99bd34a20c66955e2e89b6886fccff 100644 (file)
@@ -38,7 +38,7 @@ class ProcessibleDatabaseObject extends DatabaseObject {
                                        throw new SystemException("Unable to find class '".$this->className."'");
                                }
                                if (!ClassUtil::isInstanceOf($this->className, static::$processorInterface)) {
-                                       throw new SystemException("'".$this->className."' should implement ".$this->processorInterface);
+                                       throw new SystemException("'".$this->className."' should implement ".static::$processorInterface);
                                }
                                
                                if (ClassUtil::isInstanceOf($this->className, 'wcf\system\SingletonFactory')) {