mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 00:34:05 +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;
|
||||
}
|
||||
|
||||
$where = $db->quoteInto(sprintf('%s = ?', $foreignColumn), $foreignId)
|
||||
$where = $db->quoteInto(sprintf('%s = ?', $foreignColumn), (int) $foreignId)
|
||||
. $db->quoteInto(' AND varname = ?', $var->getKey());
|
||||
|
||||
if ($var->hasBeenDeleted()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user