mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
CustomVariables: cast foreign id to int
This commit is contained in:
parent
7e4067d265
commit
0c3e316bb9
@ -140,7 +140,7 @@ class CustomVariables implements Iterator, Countable, IcingaConfigRenderer
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$where = $db->quoteInto(sprintf('%s = ?', $foreignColumn), $foreignId)
|
$where = $db->quoteInto(sprintf('%s = ?', $foreignColumn), (int) $foreignId)
|
||||||
. $db->quoteInto(' AND varname = ?', $var->getKey());
|
. $db->quoteInto(' AND varname = ?', $var->getKey());
|
||||||
|
|
||||||
if ($var->hasBeenDeleted()) {
|
if ($var->hasBeenDeleted()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user