mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
git-svn-id: file:///svn/phpbb/trunk@7951 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
b13c05dd08
commit
8a26bac6e2
2 changed files with 7 additions and 1 deletions
|
@ -279,6 +279,8 @@ p a {
|
||||||
<li>[Fix] Return to the mode previously selected after disaproving a post (Bug #13796)</li>
|
<li>[Fix] Return to the mode previously selected after disaproving a post (Bug #13796)</li>
|
||||||
<li>[Fix] Cron now uses a locking variable to make sure it does not spawn too many webserver processes (Bug #12741)</li>
|
<li>[Fix] Cron now uses a locking variable to make sure it does not spawn too many webserver processes (Bug #12741)</li>
|
||||||
<li>[Fix] Cached stylesheet now supporting gzip compression</li>
|
<li>[Fix] Cached stylesheet now supporting gzip compression</li>
|
||||||
|
<li>[Fix] Added link to inbox for deleted PMs (Bug #13813)</li>
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,11 @@ function view_message($id, $mode, $folder_id, $msg_id, $folder, $message_row)
|
||||||
// Not able to view message, it was deleted by the sender
|
// Not able to view message, it was deleted by the sender
|
||||||
if ($message_row['pm_deleted'])
|
if ($message_row['pm_deleted'])
|
||||||
{
|
{
|
||||||
trigger_error('NO_AUTH_READ_REMOVED_MESSAGE');
|
$meta_info = append_sid("{$phpbb_root_path}ucp.$phpEx", "i=pm&folder=$folder_id");
|
||||||
|
$message = $user->lang['NO_AUTH_READ_REMOVED_MESSAGE'];
|
||||||
|
|
||||||
|
$message .= '<br /><br />' . sprintf($user->lang['RETURN_FOLDER'], '<a href="' . $meta_info . '">', '</a>');
|
||||||
|
trigger_error($message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do not allow hold messages to be seen
|
// Do not allow hold messages to be seen
|
||||||
|
|
Loading…
Add table
Reference in a new issue