mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Did some work converting lang file stuff to new format
git-svn-id: file:///svn/phpbb/trunk@366 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -117,7 +117,7 @@ if(isset($HTTP_POST_VARS['submit']))
|
||||
if(($current_time - $last_post_time) < $board_config['flood_interval'])
|
||||
{
|
||||
$error = TRUE;
|
||||
$error_msg = $l_flooderror;
|
||||
$error_msg = $lang['Flood_Error'];
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -133,7 +133,7 @@ if(isset($HTTP_POST_VARS['submit']))
|
||||
{
|
||||
$error_msg .= "<br />";
|
||||
}
|
||||
$error_msg .= $l_emptysubj;
|
||||
$error_msg .= $lang['Empty_subj'];
|
||||
}
|
||||
|
||||
if(!empty($HTTP_POST_VARS['message']))
|
||||
@@ -188,15 +188,15 @@ if(isset($HTTP_POST_VARS['submit']))
|
||||
{
|
||||
$error_msg .= "<br />";
|
||||
}
|
||||
$error_msg .= $l_emptymsg;
|
||||
$error_msg .= $lang['Empty_msg'];
|
||||
}
|
||||
}
|
||||
|
||||
switch($mode)
|
||||
{
|
||||
case 'newtopic':
|
||||
$page_title = " $l_postnew";
|
||||
$section_title = $l_postnewin;
|
||||
$page_title = " ".$lang['Postnew'];
|
||||
$section_title = $lang['Post_new_in'];
|
||||
|
||||
if(isset($HTTP_POST_VARS['submit']) && !$error)
|
||||
{
|
||||
|
Reference in New Issue
Block a user