diff options
-rw-r--r-- | phpBB/viewforum.php | 2 | ||||
-rw-r--r-- | phpBB/viewtopic.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index 62c5adeb68..402c440ab2 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -512,7 +512,7 @@ if( $total_topics ) } } - $newest_post_img = "" + $newest_post_img = ""; if( $userdata['session_logged_in'] ) { if( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_t_$topic_id"]) || diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index d66532772f..bdde34167e 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -77,7 +77,7 @@ if( isset($HTTP_GET_VARS["view"]) && empty($HTTP_GET_VARS[POST_POST_URL]) ) if( !($row = $db->sql_fetchrow($result)) ) { - message_die(GENERAL_MESSAGE, $lang['No_new_posts_last_visit']); + message_die(GENERAL_MESSAGE, 'No_new_posts_last_visit'); } else { |