authzgroups : the allow rights are tested and displayed only in debug mode

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2258 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2015-08-19 13:58:33 +00:00
parent 2a145e4db4
commit 2238778dd6

View File

@@ -139,7 +139,8 @@ class authzgroups
500);
if ($object === "/") $object = "";
$rc = $this->allow ($module, $user, "/$object");
trigger_error ("authzgroups : accessRight ('$module','$user','/$object')".
if ($this->debug)
trigger_error ("authzgroups : accessRight ('$module','$user','/$object')".
"=$rc", E_USER_NOTICE);
if ($rc !== "NO")
return TRUE;
@@ -167,7 +168,8 @@ class authzgroups
500);
if ($object === "/") $object = "";
$rc = $this->allow ($module, $user, "/$object");
trigger_error ("authzgroups : accessWrite ('$module','$user','/$object')".
if ($this->debug)
trigger_error ("authzgroups : accessWrite ('$module','$user','/$object')".
"=$rc", E_USER_NOTICE);
if ($rc === "RW")
return TRUE;
@@ -196,8 +198,9 @@ class authzgroups
500);
if ($object === "/") $object = "";
$rc = $this->allow ($module, $user, "/$object");
trigger_error ("authzgroups : accessReadOnly ('$module','$user','/$object')"
."=$rc", E_USER_NOTICE);
if ($this->debug)
trigger_error ("authzgroups : accessReadOnly ('$module','$user',".
"'/$object')" ."=$rc", E_USER_NOTICE);
if ($rc === "RO")
return TRUE;
if ($user === "anonymous")