2013-09-03 Miguel de Dios <miguel.dedios@artica.es>
* operation/tree.php, include/functions_treeview.php: improved the source code style. * operation/search_agents.getdata.php: added to search for the main address of agent. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8729 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
b2f6506f8b
commit
44550e9acc
|
@ -1,3 +1,11 @@
|
|||
2013-09-03 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* operation/tree.php, include/functions_treeview.php: improved the
|
||||
source code style.
|
||||
|
||||
* operation/search_agents.getdata.php: added to search for the
|
||||
main address of agent.
|
||||
|
||||
2013-09-02 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/massive/massive_edit_modules.php: added field "ip_target"
|
||||
|
|
|
@ -141,7 +141,8 @@ if ($searchAgents) {
|
|||
)
|
||||
AND (
|
||||
t1.nombre COLLATE utf8_general_ci LIKE '%%" . $stringSearchSQL . "%%' OR
|
||||
t2.nombre COLLATE utf8_general_ci LIKE '%%" . $stringSearchSQL . "%%'
|
||||
t2.nombre COLLATE utf8_general_ci LIKE '%%" . $stringSearchSQL . "%%' OR
|
||||
t1.direccion COLLATE utf8_general_ci LIKE '%%" . $stringSearchSQL . "%%'
|
||||
)
|
||||
";
|
||||
break;
|
||||
|
@ -171,7 +172,8 @@ if ($searchAgents) {
|
|||
)
|
||||
AND (
|
||||
t1.nombre LIKE '%%" . $stringSearchSQL . "%%' OR
|
||||
t2.nombre LIKE '%%" . $stringSearchSQL . "%%'
|
||||
t2.nombre LIKE '%%" . $stringSearchSQL . "%%' OR
|
||||
t1.direction LIKE '%%" . $stringSearchSQL . "%%'
|
||||
)
|
||||
";
|
||||
break;
|
||||
|
|
|
@ -605,7 +605,7 @@ else {
|
|||
|
||||
enterprise_hook('open_meta_frame');
|
||||
|
||||
if(tags_has_user_acl_tags()) {
|
||||
if (tags_has_user_acl_tags()) {
|
||||
ui_print_tags_warning();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue