diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-30 15:54:27 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-30 15:54:27 +0000 |
commit | 8ee977f1d1cfbf86ed3938da710c00ca9ad40c44 (patch) | |
tree | 68650b4c86c4829f8fecc5b1d77422892adcc7ec /phpBB/posting.php | |
parent | 87cd557369c368b55b4af9e26ef03de5ec259d99 (diff) | |
download | forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.tar forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.tar.gz forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.tar.bz2 forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.tar.xz forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.zip |
Case changes, fix forum_id in nav, fix forum_id in posting success msg
git-svn-id: file:///svn/phpbb/trunk@3422 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 85309d8928..a8d69b8746 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -524,7 +524,7 @@ if (isset($_REQUEST['post'])) ); $message = (!empty($enable_moderate)) ? 'POST_STORED_MOD' : 'POST_STORED'; - $message = $user->lang[$message] . '<br /><br />' . sprintf($user->lang['Click_view_message'], '<a href="viewtopic.' . $phpEx . $SID .'&p=' . $post_id . '#' . $post_id . '">', '</a>') . '<br /><br />' . sprintf($user->lang['Click_return_forum'], '<a href="viewforum.' . $phpEx . $SID .'&p=' . intval($forum_id) . '">', '</a>'); + $message = $user->lang[$message] . '<br /><br />' . sprintf($user->lang['Click_view_message'], '<a href="viewtopic.' . $phpEx . $SID .'&p=' . $post_id . '#' . $post_id . '">', '</a>') . '<br /><br />' . sprintf($user->lang['Click_return_forum'], '<a href="viewforum.' . $phpEx . $SID .'&f=' . intval($forum_id) . '">', '</a>'); trigger_error($message); } // Store message, sync counters |