mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 09:35:00 +00:00
getPermission() returns always an int
This commit is contained in:
parent
c953d02604
commit
05489891f7
|
@ -353,7 +353,7 @@ class SeedDMS_Aco extends SeedDMS_AroAco{ /* {{{ */
|
|||
return false;
|
||||
if (count($resArr) != 1)
|
||||
return 0;
|
||||
return $resArr[0]['read'];
|
||||
return (int) $resArr[0]['read'];
|
||||
} /* }}} */
|
||||
|
||||
public static function getRoot($dms) { /* {{{ */
|
||||
|
|
Loading…
Reference in New Issue
Block a user