2012-06-20 Vanessa Gil <vanessa.gil@artica.es>

* operation/tree.php: Fixed bug: Missing text in tree view title.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6628 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
vgilc 2012-06-20 15:50:15 +00:00
parent 412ddf8cdb
commit 989d80dc0b
2 changed files with 23 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-06-20 Vanessa Gil <vanessa.gil@artica.es>
* operation/tree.php: Fixed bug: Missing text in tree view title.
2012-06-20 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_ui.php,

View File

@ -984,7 +984,24 @@ $module_tab = array('text' => "<a href='index.php?extension_in_menu=estado&sec=e
$onheader = array('os' => $os_tab, 'group' => $group_tab, 'module_group' => $module_group_tab, 'policies' => $policies_tab, 'module' => $module_tab);
ui_print_page_header (__('Tree view')." - ".__('Sort the agents by'), "images/extensions.png", false, "", false, $onheader);
switch ($activeTab) {
case 'group':
$order = __('groups');
break;
case 'module_group':
$order = __('module groups');
break;
case 'policies':
$order = __('policies');
break;
case 'module':
$order = __('modules');
break;
case 'os':
$order = __('OS');
break;
}
ui_print_page_header (__('Tree view')." - ".__('Sort the agents by ') .$order, "images/extensions.png", false, "", false, $onheader);
echo "<br>";