Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fix(acl): calculate acl extension all time (#8044)
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinsivy authored Oct 28, 2019
1 parent 1722da5 commit 44a2a57
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cron/centAcl.php
Original file line number Diff line number Diff line change
Expand Up @@ -733,14 +733,14 @@
$stmt->bindValue(':aclGroupId', $aclGroupId, \PDO::PARAM_INT);
$stmt->execute();
}
}

/**
* Include module specific ACL evaluation
*/
$extensionsPaths = getModulesExtensionsPaths($pearDB);
foreach ($extensionsPaths as $extensionPath) {
require_once $extensionPath . 'centAcl.php';
}
/**
* Include module specific ACL evaluation
*/
$extensionsPaths = getModulesExtensionsPaths($pearDB);
foreach ($extensionsPaths as $extensionPath) {
require_once $extensionPath . 'centAcl.php';
}

/*
Expand Down

0 comments on commit 44a2a57

Please sign in to comment.