mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 16:24:54 +02:00
Fixed % with sprintf
This commit is contained in:
parent
1134c041f2
commit
891c517611
@ -123,7 +123,7 @@ class Tree
|
||||
return '';
|
||||
}
|
||||
|
||||
return " AND tam.nombre LIKE '%%".$this->filter['searchModule']."%%' ";
|
||||
return " AND tam.nombre LIKE '%%".str_replace('%', '%%', $this->filter['searchModule'])."%%' ";
|
||||
}
|
||||
|
||||
|
||||
@ -133,7 +133,7 @@ class Tree
|
||||
return '';
|
||||
}
|
||||
|
||||
return " AND LOWER(ta.alias) LIKE LOWER('%%".$this->filter['searchAgent']."%%')";
|
||||
return " AND LOWER(ta.alias) LIKE LOWER('%%".str_replace('%', '%%', $this->filter['searchAgent'])."%%')";
|
||||
}
|
||||
|
||||
|
||||
@ -331,7 +331,7 @@ class Tree
|
||||
return '';
|
||||
}
|
||||
|
||||
return " AND tg.nombre LIKE '%%".$this->filter['searchGroup']."%%'";
|
||||
return " AND tg.nombre LIKE '%%".str_replace('%', '%%', $this->filter['searchGroup'])."%%'";
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user