diff --git a/main/admin/settings.php b/main/admin/settings.php index 6162e53f10..9ca8b291e2 100644 --- a/main/admin/settings.php +++ b/main/admin/settings.php @@ -357,7 +357,7 @@ Display :: display_header($tool_name); // displaying the message that the settings have been stored if (!empty($_GET['action']) && $_GET['action'] == "stored") { - Display :: display_normal_message(get_lang('SettingsStored')); + Display :: display_confirmation_message(get_lang('SettingsStored')); } // the action images @@ -467,7 +467,7 @@ function handle_plugins() $category = $_GET['category']; event_system(LOG_CONFIGURATION_SETTINGS_CHANGE, LOG_CONFIGURATION_SETTINGS_CATEGORY, $category, $time, $user_id); - Display :: display_normal_message(get_lang('SettingsStored')); + Display :: display_confirmation_message(get_lang('SettingsStored')); } echo get_lang('AvailablePlugins')."

"; @@ -928,7 +928,7 @@ function handle_search() { $result = api_set_setting($key,$value,null,null); } - Display :: display_normal_message($SettingsStored); + Display :: display_confirmation_message($SettingsStored); } else { echo '
'; $form->display(); diff --git a/main/document/edit_document.php b/main/document/edit_document.php index e501969009..a3e94103e3 100644 --- a/main/document/edit_document.php +++ b/main/document/edit_document.php @@ -599,7 +599,7 @@ if(isset($msgError)) if( isset($info_message)) { - Display::display_normal_message($info_message); //main API + Display::display_confirmation_message($info_message); //main API } diff --git a/main/document/slideshow.php b/main/document/slideshow.php index 261b405a43..8e9d993451 100644 --- a/main/document/slideshow.php +++ b/main/document/slideshow.php @@ -286,7 +286,8 @@ if ($slide_id !== "all") { echo ''; echo ''; - echo ''.get_lang('Modify').'
'; + + echo ''.get_lang('Modify').'
'; list($width, $high) = getimagesize($image); echo $width.' x '.$high.'
'; diff --git a/main/user/user.php b/main/user/user.php index 9cbd170396..56df5277de 100644 --- a/main/user/user.php +++ b/main/user/user.php @@ -604,7 +604,7 @@ if (api_is_allowed_to_edit()) { $table->set_header($header_nr++, get_lang('Active'), false); $table->set_column_filter(9, 'active_filter'); //actions column - $table->set_header($header_nr++, get_lang('Modify'), false); + $table->set_header($header_nr++, get_lang('Action'), false); $table->set_column_filter($header_nr-1, 'modify_filter'); if (api_is_allowed_to_edit()) { $table->set_form_actions(array('unsubscribe' => get_lang('Unreg')), 'user');