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

Commit

Permalink
fix(ldap): Fix bad column name (#10858)
Browse files Browse the repository at this point in the history
  • Loading branch information
callapa authored Mar 14, 2022
1 parent 0c63a22 commit 12df45b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/class/CentreonLDAPAdmin.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public function modifyTemplate($id, array $options = []): bool
$statement = $this->db->prepare(
"UPDATE auth_ressource_info
SET ari_value = :value
WHERE ar_id = :id AND ar_name = :name"
WHERE ar_id = :id AND ari_name = :name"
);
} else {
$statement = $this->db->prepare(
Expand Down

0 comments on commit 12df45b

Please sign in to comment.