2010-05-04 Sergio Martin <sergio.martin@artica.es>
* godmode/db/db_audit.php godmode/db/db_sanity.php godmode/db/db_refine.php godmode/db/db_info.php godmode/db/db_event.php godmode/db/db_purge.php: Fixed the screens without headers for bug: 2996488 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2659 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
185dbb4afc
commit
207282b6af
|
@ -1,3 +1,13 @@
|
||||||
|
2010-05-04 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
|
* godmode/db/db_audit.php
|
||||||
|
godmode/db/db_sanity.php
|
||||||
|
godmode/db/db_refine.php
|
||||||
|
godmode/db/db_info.php
|
||||||
|
godmode/db/db_event.php
|
||||||
|
godmode/db/db_purge.php: Fixed the screens
|
||||||
|
without headers for bug: 2996488
|
||||||
|
|
||||||
2010-05-04 Miguel de Dios <miguel.dedios@artica.es>
|
2010-05-04 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* godmode/reporting/reporting_builder.item_editor.php: added tooltip for to
|
* godmode/reporting/reporting_builder.item_editor.php: added tooltip for to
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
// Load global vars
|
// Load global vars
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
print_page_header (__('Database audit purge'), "", false, "", true);
|
print_page_header (__('Database maintenance').' » '.__('Database audit purge'), "images/god8.png", false, "", true);
|
||||||
|
|
||||||
check_login ();
|
check_login ();
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ global $config;
|
||||||
|
|
||||||
check_login ();
|
check_login ();
|
||||||
|
|
||||||
print_page_header (__('Event database cleanup'), "", false, "", true);
|
print_page_header (__('Database maintenance').' » '.__('Event database cleanup'), "images/god8.png", false, "", true);
|
||||||
|
|
||||||
if (! give_acl ($config['id_user'], 0, "DM")) {
|
if (! give_acl ($config['id_user'], 0, "DM")) {
|
||||||
audit_db ($config['id_user'], $_SERVER['REMOTE_ADDR'], "ACL Violation", "Trying to access Database Management Event");
|
audit_db ($config['id_user'], $_SERVER['REMOTE_ADDR'], "ACL Violation", "Trying to access Database Management Event");
|
||||||
|
|
|
@ -22,7 +22,7 @@ if ($config['flash_charts']) {
|
||||||
require('include/fgraph.php');
|
require('include/fgraph.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
print_page_header (__('Database information'), "", false, "", true);
|
print_page_header (__('Database maintenance').' » '.__('Database information'), "images/god8.png", false, "", true);
|
||||||
|
|
||||||
check_login ();
|
check_login ();
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,8 @@ if (! give_acl ($config['id_user'], 0, "DM")) {
|
||||||
//id_agent = -1: None selected; id_agent = 0: All
|
//id_agent = -1: None selected; id_agent = 0: All
|
||||||
$id_agent = (int) get_parameter_post ("agent", -1);
|
$id_agent = (int) get_parameter_post ("agent", -1);
|
||||||
|
|
||||||
echo '<h2>'.__('Database maintenance').' » '.__('Database purge').'</h2>';
|
print_page_header (__('Database maintenance').' » '.__('Database purge'), "images/god8.png", false, "", true);
|
||||||
|
|
||||||
if ($config['flash_charts']) {
|
if ($config['flash_charts']) {
|
||||||
echo grafico_db_agentes_purge ($id_agent, $width, $height);
|
echo grafico_db_agentes_purge ($id_agent, $width, $height);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -26,7 +26,7 @@ if (! give_acl ($config['id_user'], 0, "DM")) {
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<h2>'.__('Database maintenance').' » '.__('Database debug').'</h2>';
|
print_page_header (__('Database maintenance').' » '.__('Database debug'), "images/god8.png", false, "", true);
|
||||||
|
|
||||||
|
|
||||||
if ((isset ($_GET["operacion"])) && (!isset ($_POST["update_agent"]))) {
|
if ((isset ($_GET["operacion"])) && (!isset ($_POST["update_agent"]))) {
|
||||||
|
|
|
@ -26,8 +26,7 @@ if (! give_acl ($config["id_user"], 0, "DM")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<h2>'.__('Database maintenance').' » ';
|
print_page_header (__('Database maintenance').' » '.__('Database sanity tool'), "images/god8.png", false, "", true);
|
||||||
echo __('Database sanity tool')."</h2>";
|
|
||||||
|
|
||||||
$sanity = get_parameter ("sanity", 0);
|
$sanity = get_parameter ("sanity", 0);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue