2010-06-07 Ramon Novoa <rnovoa@artica.es>
* include/functions_reporting.php: Disabled DB cache for get_agent_module_info () to avoid memory errors in big environments. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2867 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
126d0f00dc
commit
44bb16d249
|
@ -1,3 +1,9 @@
|
|||
2010-06-07 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* include/functions_reporting.php: Disabled DB cache for
|
||||
get_agent_module_info () to avoid memory errors in big
|
||||
environments.
|
||||
|
||||
2010-06-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/alerts/alert_list.list.php: fixed the style of action list in the
|
||||
|
|
|
@ -1403,7 +1403,7 @@ function get_agent_module_info ($id_agent) {
|
|||
AND tagente_estado.utimestamp > 0
|
||||
AND tagente_modulo.id_agente = %d", $id_agent);
|
||||
|
||||
$modules = get_db_all_rows_sql ($sql);
|
||||
$modules = get_db_all_rows_sql ($sql, false, false);
|
||||
|
||||
if ($modules === false) {
|
||||
return $return;
|
||||
|
|
Loading…
Reference in New Issue