diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 66fa9a2331..8973c329a6 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-02-26 Sancho Lerena + + * include/functions_filemanager.php: Fixed tooltips to use new format. + Added space between action icons. + 2013-02-26 Ramon Novoa * godmode/agentes/module_manager_editor_network.php: Aesthetic fixes. diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index e833e57447..62033b6693 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -485,9 +485,9 @@ function filemanager_file_explorer($real_directory, $relative_directory, $url, $ $table->size = array (); $table->align[1] = 'left'; - $table->align[2] = 'center'; + $table->align[2] = 'left'; $table->align[3] = 'left'; - $table->align[4] = 'center'; + $table->align[4] = 'left'; $table->size[0] = '24px'; @@ -639,15 +639,15 @@ function filemanager_file_explorer($real_directory, $relative_directory, $url, $ if (!$readOnly) { if (is_writable ($real_directory)) { echo "
"; - echo ""; - echo html_print_image('images/mimetypes/directory.png', true); - echo ""; - echo ""; - echo html_print_image('images/mimetypes/text.png', true); - echo ""; - echo ""; - echo html_print_image('images/mimetypes/unknown.png', true); - echo ""; + echo ""; + echo html_print_image('images/mimetypes/directory.png', true, array("title" => __('Create directory'))); + echo " "; + echo ""; + echo html_print_image('images/mimetypes/text.png', true, array("title" => __('Create text'))); + echo " "; + echo ""; + echo html_print_image('images/mimetypes/unknown.png', true, array("title" => __('Upload file/s'))); + echo " "; echo "
"; } else {