aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-11-24 15:57:31 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-11-24 15:57:31 +0000
commit92e5512011789d1ecab92a6f3e8fc4a70e0e4a00 (patch)
treea510f09ac01e2fbb5bce60d1fb1952f81645a6e2 /phpBB/posting.php
parent64f1d8b8ac25f134d79c1ca6bb4bf14ef84e7986 (diff)
downloadforums-92e5512011789d1ecab92a6f3e8fc4a70e0e4a00.tar
forums-92e5512011789d1ecab92a6f3e8fc4a70e0e4a00.tar.gz
forums-92e5512011789d1ecab92a6f3e8fc4a70e0e4a00.tar.bz2
forums-92e5512011789d1ecab92a6f3e8fc4a70e0e4a00.tar.xz
forums-92e5512011789d1ecab92a6f3e8fc4a70e0e4a00.zip
Reminder to self, checking files at 2am bad, checking files at 2pm good
git-svn-id: file:///svn/phpbb/trunk@1435 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index db24368ac5..2fb140ee35 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -980,7 +980,7 @@ if( !$is_auth[$is_auth_type] )
}
else
{
- $message = $lang['Sorry_auth'] . $is_auth[$is_auth_type . "_type"] . $auth_string . $lang['this_forum'];
+ $message = sprintf($lang['Sorry_' . $is_auth_type], $is_auth[$is_auth_type . "_type"]);
}
message_die(GENERAL_MESSAGE, $message);
@@ -2708,8 +2708,8 @@ $template->assign_vars(array(
"L_OPTIONS" => $lang['Options'],
"L_PREVIEW" => $lang['Preview'],
"L_SPELLCHECK" => $lang['Spellcheck'],
- "L_SUBMIT" => $lang['Submit_post'],
- "L_CANCEL" => $lang['Cancel_post'],
+ "L_SUBMIT" => $lang['Submit'],
+ "L_CANCEL" => $lang['Cancel'],
"L_CONFIRM_DELETE" => $lang['Confirm_delete'],
"L_DISABLE_HTML" => $lang['Disable_HTML_post'],
"L_DISABLE_BBCODE" => $lang['Disable_BBCode_post'],