1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-13 03:54:57 +01:00
git-svn-id: file:///svn/phpbb/trunk@6805 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2006-12-24 14:34:26 +00:00
parent f0129b6f27
commit cbd1fb07ed
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ class bbcode_firstpass extends bbcode
{
if (preg_match($regexp, $this->message))
{
$this->warn_msg[] = $user->lang['UNAUTHORISED_BBCODE'] . '[' . $bbcode_name . ']';
$this->warn_msg[] = sprintf($user->lang['UNAUTHORISED_BBCODE'] , '[' . $bbcode_name . ']');
continue;
}
}

View File

@ -184,7 +184,7 @@ $lang = array_merge($lang, array(
'TOO_MANY_USER_OPTIONS' => 'You cannot specify more options per user than existing poll options',
'TOPIC_BUMPED' => 'Topic has been bumped successfully',
'UNAUTHORISED_BBCODE' => 'You cannot use certain BBCodes: ',
'UNAUTHORISED_BBCODE' => 'You cannot use certain BBCodes: %s',
'UNGLOBALISE_EXPLAIN' => 'To switch this topic back from being global to a normal topic, you need to select the forum you wish this topic to be displayed.',
'UPDATE_COMMENT' => 'Update comment',
'URL_INVALID' => 'The URL you specified is invalid.',