mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Fix. Group intercept with not empty group name (#2232)
This commit is contained in:
committed by
FusionPBX
parent
faf90fe297
commit
cddb1da5a9
@@ -192,7 +192,7 @@
|
||||
sql = sql .. "call_group = '' or call_group is NULL";
|
||||
else
|
||||
local param_name = "call_group_" .. tostring(key)
|
||||
sql = sql .. "call_group = :" .. param_name;
|
||||
sql = sql .. "call_group like :" .. param_name;
|
||||
params[param_name] = '%' .. call_group .. '%';
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user