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:
parent
e844c73c08
commit
67e41f24a3
|
@ -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
|
||||
|
|
|
@ -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 = ' » ' . __('Performance') . ' ' . ui_print_help_icon ('performance', true);
|
||||
$subpage = ' » ' . __('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) {
|
||||
|
|
Loading…
Reference in New Issue