mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
git-svn-id: file:///svn/phpbb/trunk@6838 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
6348898fd5
commit
fbef3990e7
1 changed files with 5 additions and 4 deletions
|
@ -225,21 +225,22 @@ while ($row = $db->sql_fetchrow($result))
|
||||||
switch ($on_page[1])
|
switch ($on_page[1])
|
||||||
{
|
{
|
||||||
case 'reply':
|
case 'reply':
|
||||||
$location = sprintf($user->lang['REPLYING_MESSAGE'], $forum_data[$forum_id]);
|
case 'quote':
|
||||||
|
$location = sprintf($user->lang['REPLYING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
$location = sprintf($user->lang['POSTING_MESSAGE'], $forum_data[$forum_id]);
|
$location = sprintf($user->lang['POSTING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'viewtopic':
|
case 'viewtopic':
|
||||||
$location = sprintf($user->lang['READING_TOPIC'], $forum_data[$forum_id]);
|
$location = sprintf($user->lang['READING_TOPIC'], $forum_data[$forum_id]['forum_name']);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'viewforum':
|
case 'viewforum':
|
||||||
$location = sprintf($user->lang['READING_FORUM'], $forum_data[$forum_id]);
|
$location = sprintf($user->lang['READING_FORUM'], $forum_data[$forum_id]['forum_name']);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue