2012-01-12 Junichi Satoh <junichi@rworks.jp>

* godmode/admin_access_logs.php: Fixed user filtering does not work.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5354 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2012-01-12 05:55:23 +00:00
parent 85f43f1dc4
commit a0e133ede7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-01-12 Junichi Satoh <junichi@rworks.jp>
* godmode/admin_access_logs.php: Fixed user filtering does not work.
2012-01-11 Ramon Novoa <rnovoa@artica.es>
* include/functions_netflow.php,

View File

@ -60,7 +60,7 @@ $table->data = array();
$table->data[0][0] = __('Action');
$table->data[0][1] = html_print_select ($actions, 'tipo_log', $tipo_log, '', __('All'), 'all', true);
$table->data[1][0] = __('User');
$table->data[1][1] = html_print_select_from_sql('SELECT id_user, id_user AS text FROM tusuario', 'user', $user_filter, '', __('All'), 0, true);
$table->data[1][1] = html_print_select_from_sql('SELECT id_user, id_user AS text FROM tusuario', 'user_filter', $user_filter, '', __('All'), 'all', true);
$table->data[2][0] = __('Free text for search (*)');
$table->data[2][1] = html_print_input_text('filter_text', $filter_text, __('Free text for search (*)'), 20, 40, true);
$table->data[3][0] = __('Max. hours old');