aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 66add3ed41..9ae84c6eb7 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -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
{