2013-08-09 Miguel de Dios <miguel.dedios@artica.es>
* godmode/snmpconsole/snmp_alert.php: fixed the PHP warnings for empty objects. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8651 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
b2d595ec05
commit
f720c5fffe
|
@ -1,3 +1,8 @@
|
|||
2013-08-09 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/snmpconsole/snmp_alert.php: fixed the PHP warnings for
|
||||
empty objects.
|
||||
|
||||
2013-08-09 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/snmpconsole/snmp_alert.php: fixed the link to edit in the
|
||||
|
|
|
@ -560,7 +560,7 @@ else {
|
|||
$filter_param = (bool)get_parameter('filter', false);
|
||||
$offset = (int) get_parameter ('offset');
|
||||
|
||||
$table_filter = null;
|
||||
$table_filter = new stdClass();
|
||||
$table_filter->width = "98%";
|
||||
$table_filter->data = array();
|
||||
$table_filter->data[0][0] = __('Free search') . ui_print_help_tip(
|
||||
|
@ -655,6 +655,7 @@ else {
|
|||
FROM talert_snmp WHERE' . $where_sql);
|
||||
}
|
||||
|
||||
$table = new stdClass();
|
||||
$table->data = array ();
|
||||
$table->head = array ();
|
||||
$table->size = array ();
|
||||
|
|
Loading…
Reference in New Issue