Ejemplo n.º 1
0
function ChangeAclUser()
{
    $uid = $_GET["ChangeAclUser"];
    $path = base64_decode($_GET["path"]);
    $acls = new aclsdirs(base64_decode($_GET["path"]));
    $acls->acls_array["MEMBERS"][$uid][$_GET["mode"]] = $_GET["value"];
    $acls->SaveAcls();
}