Example #1
0
 /**
  * Overrides the isPropertyDirty method. See http://forge.typo3.org/issues/8952
  * for further information.
  *
  * @param mixed $previousValue
  * @param mixed $currentValue
  *
  * @return boolean
  */
 protected function isPropertyDirty($previousValue, $currentValue)
 {
     if ($currentValue instanceof Forum || $currentValue instanceof Topic) {
         return FALSE;
     } else {
         return parent::isPropertyDirty($previousValue, $currentValue);
     }
 }