mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
Checked all calls to message_die and made sure that if they would be outputted to a user
without a major error that they got their error string from the lang file Also made sure all calls had the right arguments in teh right place git-svn-id: file:///svn/phpbb/trunk@1289 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -45,7 +45,7 @@ $start = ( isset($HTTP_GET_VARS['start']) ) ? intval($HTTP_GET_VARS['start']) :
|
||||
|
||||
if( !isset($topic_id) && !isset($post_id) )
|
||||
{
|
||||
message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
|
||||
message_die(GENERAL_MESSAGE, $lang['Topic_post_not_exist'], $lang['Error'], __LINE__, __FILE__);
|
||||
}
|
||||
|
||||
//
|
||||
@@ -75,7 +75,7 @@ if( isset($HTTP_GET_VARS["view"]) && empty($HTTP_GET_VARS[POST_POST_URL]) )
|
||||
|
||||
if( !($row = $db->sql_fetchrow($result)) )
|
||||
{
|
||||
message_die(GENERAL_MESSAGE, 'No new posts since your last visit');
|
||||
message_die(GENERAL_MESSAGE, $lang['No_new_posts_last_visit']);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user