2013-04-16 Miguel de Dios <miguel.dedios@artica.es>

* godmode/setup/setup.php: updated the method to fill the header
	with the new header.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7991 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-04-16 10:01:37 +00:00
parent e844c73c08
commit 67e41f24a3
2 changed files with 34 additions and 27 deletions

View File

@ -1,3 +1,8 @@
2013-04-16 Miguel de Dios <miguel.dedios@artica.es>
* godmode/setup/setup.php: updated the method to fill the header
with the new header.
2013-04-16 Sergio Martin <sergio.martin@artica.es>
* include/functions_ui.php

View File

@ -96,8 +96,9 @@ if (check_acl ($config['id_user'], 0, "AW")) {
}
}
$help_header = '';
if (enterprise_installed()) {
$subpage = setup_enterprise_add_subsection_main($section, $buttons);
$subpage = setup_enterprise_add_subsection_main($section, $buttons, $help_header);
}
switch ($section) {
@ -111,7 +112,8 @@ switch ($section) {
break;
case 'perf':
$buttons['perf']['active'] = true;
$subpage = ' &raquo ' . __('Performance') . ' ' . ui_print_help_icon ('performance', true);
$subpage = ' &raquo ' . __('Performance');
$help_header = 'performance';
break;
case 'vis':
$buttons['vis']['active'] = true;
@ -124,7 +126,7 @@ switch ($section) {
}
// Header
ui_print_page_header (__('Configuration') . $subpage, "", false, "", true, $buttons);
ui_print_page_header (__('Configuration') . $subpage, "", false, $help_header, true, $buttons);
if (isset($config['error_config_update_config'])) {
if ($config['error_config_update_config']['correct'] == false) {