mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Merge PR #918 branch 'develop-olympus' into develop
* develop-olympus: [ticket/10568] adding MESSAGE_EDITED to ucp.php and compose_pm
This commit is contained in:
commit
0a260f80af
2 changed files with 3 additions and 1 deletions
|
@ -749,7 +749,8 @@ function compose_pm($id, $mode, $action, $user_folders = array())
|
||||||
$return_box_lang = ($action === 'post' || $action === 'edit') ? 'PM_OUTBOX' : 'PM_INBOX';
|
$return_box_lang = ($action === 'post' || $action === 'edit') ? 'PM_OUTBOX' : 'PM_INBOX';
|
||||||
|
|
||||||
|
|
||||||
$message = $user->lang['MESSAGE_STORED'] . '<br /><br />' . sprintf($user->lang['VIEW_PRIVATE_MESSAGE'], '<a href="' . $return_message_url . '">', '</a>');
|
$save_message = ($action === 'edit') ? $user->lang['MESSAGE_EDITED'] : $user->lang['MESSAGE_STORED'];
|
||||||
|
$message = $save_message . '<br /><br />' . $user->lang('VIEW_PRIVATE_MESSAGE', '<a href="' . $return_message_url . '">', '</a>');
|
||||||
|
|
||||||
$last_click_type = 'CLICK_RETURN_FOLDER';
|
$last_click_type = 'CLICK_RETURN_FOLDER';
|
||||||
if ($folder_url)
|
if ($folder_url)
|
||||||
|
|
|
@ -268,6 +268,7 @@ $lang = array_merge($lang, array(
|
||||||
'MESSAGE_BY_AUTHOR' => 'by',
|
'MESSAGE_BY_AUTHOR' => 'by',
|
||||||
'MESSAGE_COLOURS' => 'Message colours',
|
'MESSAGE_COLOURS' => 'Message colours',
|
||||||
'MESSAGE_DELETED' => 'Message successfully deleted.',
|
'MESSAGE_DELETED' => 'Message successfully deleted.',
|
||||||
|
'MESSAGE_EDITED' => 'Message successfully edited.',
|
||||||
'MESSAGE_HISTORY' => 'Message history',
|
'MESSAGE_HISTORY' => 'Message history',
|
||||||
'MESSAGE_REMOVED_FROM_OUTBOX' => 'This message was deleted by its author.',
|
'MESSAGE_REMOVED_FROM_OUTBOX' => 'This message was deleted by its author.',
|
||||||
'MESSAGE_SENT_ON' => 'on',
|
'MESSAGE_SENT_ON' => 'on',
|
||||||
|
|
Loading…
Add table
Reference in a new issue