hmm, this seems to be a merge i forgot

git-svn-id: file:///svn/phpbb/trunk@8711 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2008-07-29 13:39:50 +00:00
parent 8c186d97c6
commit 7c79d0f860
2 changed files with 3 additions and 2 deletions

View file

@ -225,8 +225,9 @@ while ($row = $db->sql_fetchrow($result))
{
case 'posting':
preg_match('#mode=([a-z]+)#', $row['session_page'], $on_page);
$posting_mode = (!empty($on_page[1])) ? $on_page[1] : '';
switch ($on_page[1])
switch ($posting_mode)
{
case 'reply':
case 'quote':