Fixed syntax error

This commit is contained in:
Albert Santoni 2014-06-20 17:44:30 -04:00
parent 0eab0c609b
commit 9a84bdfda1
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class CcSubjs extends BaseCcSubjs {
public function isAdminOrPM()
{
return $this->type === UTYPE_ADMIN === UTYPE_SUPERADMIN || $this->type === UTYPE_ADMIN || $this->type === UTYPE_PROGRAM_MANAGER;
return $this->type === UTYPE_SUPERADMIN || $this->type === UTYPE_ADMIN || $this->type === UTYPE_PROGRAM_MANAGER;
}
public function isHostOfShow($showId)