1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-13 12:35:06 +01:00

Added max_quote_depth limiter to prevent users from nesting a hell lot of quotes.

array_merge() replaced with a faster solution. Note that it will _not_ overwrite existing strings.


git-svn-id: file:///svn/phpbb/trunk@4042 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud 2003-05-21 19:11:04 +00:00
parent 394b2d160a
commit fd7b3a0953

View File

@ -521,6 +521,8 @@ $lang = array(
'TOO_FEW_CHARS' => 'Your message contains too few characters',
'TOO_MANY_CHARS' => 'Your message contains too many characters',
'TOO_MANY_SMILIES' => 'Your message contains too many emoticons',
'UNAUTHORISED_BBCODE' => 'Your are not authorised to use this bbcode: ',
'QUOTE_DEPTH_EXCEEDED' => 'Quote depth exceeded',
'Forum_locked' => 'This forum is locked you cannot post, reply to or edit topics',
'Topic_locked' => 'This topic is locked you cannot edit posts or make replies',
@ -1082,7 +1084,7 @@ $lang = array(
// lang_mod strings
$lang = array_merge($lang, array(
$lang += array(
'FRONT_PAGE' => 'Front page',
'REPORTED_POSTS' => 'Reported posts',
'VIEW_FORUM' => 'View forum',
@ -1270,5 +1272,5 @@ $lang = array_merge($lang, array(
'OTHER' => 'The reported post does not fit into any other category, please use the description field'
)
)
));
);
?>