2014-08-27 Vanessa Gil <vanessa.gil@artica.es>
* godmode/groups/group_list.php: Fixed problem displaying empty agents. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10462 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
7ac9f71c07
commit
098aa68d80
|
@ -1,3 +1,8 @@
|
|||
2014-08-27 Vanessa Gil <vanessa.gil@artica.es>
|
||||
|
||||
* godmode/groups/group_list.php: Fixed problem displaying empty
|
||||
agents.
|
||||
|
||||
2014-08-26 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_clippy.php, include/styles/pandora.css: some
|
||||
|
|
|
@ -101,7 +101,7 @@ if (is_ajax ()) {
|
|||
$_sql_post = ' 1=1 ';
|
||||
if ($show_void_agents == 0) {
|
||||
|
||||
$_sql_post .= ' AND id_agente IN (SELECT a.id_agente FROM tagente a, tagente_modulo b WHERE a.id_agente=b.id_agente) AND \'1\'';
|
||||
$_sql_post .= ' AND id_agente IN (SELECT a.id_agente FROM tagente a, tagente_modulo b WHERE a.id_agente=b.id_agente AND b.delete_pending=0) AND \'1\'';
|
||||
$filter[$_sql_post] = '1';
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue