1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

Minor change to message output when no posts exist

git-svn-id: file:///svn/phpbb/trunk@1233 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-10-16 23:34:45 +00:00
parent 2d11805844
commit 390928f4ee
2 changed files with 4 additions and 12 deletions

View File

@@ -398,7 +398,7 @@ if(!$result = $db->sql_query($sql))
if(!$total_posts = $db->sql_numrows($result))
{
message_die(GENERAL_ERROR, "There don't appear to be any posts for this topic.", "", __LINE__, __FILE__, $sql);
message_die(GENERAL_MESSAGE, $lang['No_posts_topic']);
}
$postrow = $db->sql_fetchrowset($result);