Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1300 → Rev 1301

/trunk/includes/classes/OIDplusAuthContentStore.class.php
183,7 → 183,7
* @return bool
*/
public function isAdminLoggedIn(): bool {
return $this->getValue('oidplus_admin_logged_in') == 1;
return $this->getValue('oidplus_admin_logged_in', 0) == 1;
}
 
}