mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-26 16:44:26 +02:00
DbTool: Do not replace '%' with '%%' in method grantPrivileges
fixes #13615
This commit is contained in:
parent
3ba1d9ea56
commit
e9eeb030a6
@ -583,7 +583,7 @@ class DbTool
|
|||||||
$to = sprintf(
|
$to = sprintf(
|
||||||
' TO %s@%s',
|
' TO %s@%s',
|
||||||
$this->quoteIdentifier($username),
|
$this->quoteIdentifier($username),
|
||||||
str_replace('%', '%%', $this->quoteIdentifier($host))
|
$this->quoteIdentifier($host)
|
||||||
);
|
);
|
||||||
|
|
||||||
$dbPrivileges = array();
|
$dbPrivileges = array();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user