2011-02-14 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_db.php: fixed the module search. Fixes: #3181086 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3834 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
eeaaf8171a
commit
2fc07a85ed
|
@ -1,3 +1,9 @@
|
|||
2011-02-14 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_db.php: fixed the module search.
|
||||
|
||||
Fixes: #3181086
|
||||
|
||||
2011-02-14 Javier Lanz <javier.lanz@artica.es>
|
||||
* godmode/reporting/reporting_builder.main.php: Table size changed to 90%
|
||||
* godmode/reporting/reporting_builder.item_editor.php: Fixed a small
|
||||
|
|
|
@ -738,6 +738,9 @@ function get_agent_modules ($id_agent, $details = false, $filter = false, $index
|
|||
if ($value[0] == '%') {
|
||||
array_push ($fields, $field.' LIKE "'.$value.'"');
|
||||
}
|
||||
else if ($value[0] . $value[1] == '<>') {
|
||||
array_push($fields, $field.' <> ' . substr($value, 2));
|
||||
}
|
||||
else if (substr($value, -1) == '%') {
|
||||
array_push ($fields, $field.' LIKE "'.$value.'"');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue