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:
zarzuelo 2010-05-04 10:32:03 +00:00
parent 185dbb4afc
commit 207282b6af
7 changed files with 17 additions and 7 deletions

View File

@ -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

View File

@ -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').' &raquo; '.__('Database audit purge'), "images/god8.png", false, "", true);
check_login (); check_login ();

View File

@ -18,7 +18,7 @@ global $config;
check_login (); check_login ();
print_page_header (__('Event database cleanup'), "", false, "", true); print_page_header (__('Database maintenance').' &raquo; '.__('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");

View File

@ -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').' &raquo; '.__('Database information'), "images/god8.png", false, "", true);
check_login (); check_login ();

View File

@ -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').' &raquo; '.__('Database purge').'</h2>'; print_page_header (__('Database maintenance').' &raquo; '.__('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 {

View File

@ -26,7 +26,7 @@ if (! give_acl ($config['id_user'], 0, "DM")) {
exit; exit;
} }
echo '<h2>'.__('Database maintenance').' &raquo; '.__('Database debug').'</h2>'; print_page_header (__('Database maintenance').' &raquo; '.__('Database debug'), "images/god8.png", false, "", true);
if ((isset ($_GET["operacion"])) && (!isset ($_POST["update_agent"]))) { if ((isset ($_GET["operacion"])) && (!isset ($_POST["update_agent"]))) {

View File

@ -26,8 +26,7 @@ if (! give_acl ($config["id_user"], 0, "DM")) {
return; return;
} }
echo '<h2>'.__('Database maintenance').' &raquo; '; print_page_header (__('Database maintenance').' &raquo; '.__('Database sanity tool'), "images/god8.png", false, "", true);
echo __('Database sanity tool')."</h2>";
$sanity = get_parameter ("sanity", 0); $sanity = get_parameter ("sanity", 0);