Commit 70e890ed authored by vogelor's avatar vogelor
Browse files

moved the system-log and the jobqueue to the monitor.

parent a11603bb
......@@ -64,14 +64,6 @@ $items[] = array( 'title' => 'Edit Server IP',
'target' => 'content',
'link' => 'admin/server_ip_list.php');
$items[] = array( 'title' => 'Jobqueue',
'target' => 'content',
'link' => 'admin/datalog_list.php');
$items[] = array( 'title' => 'Log',
'target' => 'content',
'link' => 'admin/log_list.php');
$module['nav'][] = array( 'title' => 'Servers',
'open' => 1,
'items' => $items);
......
......@@ -43,7 +43,7 @@ require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php');
//* Check permissions for module
$app->auth->check_module_permissions('admin');
$app->auth->check_module_permissions('monitor');
$app->uses("tform_actions");
$app->tform_actions->onDelete();
......
......@@ -42,10 +42,10 @@ $list_def_file = "list/datalog.list.php";
******************************************/
//* Check permissions for module
$app->auth->check_module_permissions('admin');
$app->auth->check_module_permissions('monitor');
$app->uses('listform_actions');
//$app->listform_actions->SQLExtWhere = "wb = 'W'";
$app->listform_actions->SQLExtWhere = "server_id != 0";
$app->listform_actions->SQLOrderBy = "ORDER BY tstamp DESC, datalog_id DESC";
$app->listform_actions->onLoad();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment