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

Commit

Permalink
fix(cron): renaming bound variable name (#7984)
Browse files Browse the repository at this point in the history
  • Loading branch information
sc979 committed Oct 15, 2019
1 parent f6b0aaf commit 24bd33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron/centAcl.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
while ($rowData = $res1->fetch()) {
$stmt = $pearDB->prepare(
"INSERT INTO acl_resources_sg_relations (sg_id, acl_res_id)
VALUES (:sgIg, :aclResId)"
VALUES (:sgId, :aclResId)"
);
$stmt->bindValue(':sgId', $rowData['sg_id'], \PDO::PARAM_INT);
$stmt->bindValue(':aclResId', $row['acl_res_id'], \PDO::PARAM_INT);
Expand Down

0 comments on commit 24bd33c

Please sign in to comment.