2013-09-12 Ramon Novoa <rnovoa@artica.es>
* godmode/snmpconsole/snmp_alert.php: Fixed pagination (was not working well when a search filter was being used). * godmode/netflow/nf_edit_form.php: Force the ID of the table (the javascript was broken). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8763 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
f09b303f2f
commit
27b30523d0
|
@ -1,3 +1,11 @@
|
|||
2013-09-12 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* godmode/snmpconsole/snmp_alert.php: Fixed pagination (was not working
|
||||
well when a search filter was being used).
|
||||
|
||||
* godmode/netflow/nf_edit_form.php: Force the ID of the table (the
|
||||
javascript was broken).
|
||||
|
||||
2013-09-12 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* include/functions_config.php: Removed some code that set
|
||||
|
|
|
@ -164,6 +164,7 @@ if ($create) {
|
|||
}
|
||||
}
|
||||
|
||||
$table->id = 'table1';
|
||||
$table->width = '80%';
|
||||
$table->border = 0;
|
||||
$table->cellspacing = 3;
|
||||
|
|
|
@ -597,7 +597,7 @@ else {
|
|||
$url_pagination = "index.php?" .
|
||||
"sec=snmpconsole&" .
|
||||
"sec2=godmode/snmpconsole/snmp_alert&" .
|
||||
"free_seach=" . $free_search . "&" .
|
||||
"free_search=" . $free_search . "&" .
|
||||
"trap_type_filter=" . $trap_type_filter . "&" .
|
||||
"priority_filter=" . $priority_filter;
|
||||
}
|
||||
|
@ -605,7 +605,7 @@ else {
|
|||
$url_pagination = "index.php?" .
|
||||
"sec=snmpconsole&" .
|
||||
"sec2=godmode/snmpconsole/snmp_alert&" .
|
||||
"free_seach=" . $free_search . "&" .
|
||||
"free_search=" . $free_search . "&" .
|
||||
"trap_type_filter=" . $trap_type_filter . "&" .
|
||||
"priority_filter=" . $priority_filter . "&" .
|
||||
"offset=" . $offset;
|
||||
|
|
Loading…
Reference in New Issue