diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-10-16 23:34:45 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-10-16 23:34:45 +0000 |
| commit | 390928f4eeab1ed2107c5d2149f0da54ef0e0e15 (patch) | |
| tree | ff16eb68c758e9adee42070939576f3f51be27be /phpBB/viewtopic.php | |
| parent | 2d118058442ca416cf099031c320d10e9cd3a1af (diff) | |
| download | forums-390928f4eeab1ed2107c5d2149f0da54ef0e0e15.tar forums-390928f4eeab1ed2107c5d2149f0da54ef0e0e15.tar.gz forums-390928f4eeab1ed2107c5d2149f0da54ef0e0e15.tar.bz2 forums-390928f4eeab1ed2107c5d2149f0da54ef0e0e15.tar.xz forums-390928f4eeab1ed2107c5d2149f0da54ef0e0e15.zip | |
Minor change to message output when no posts exist
git-svn-id: file:///svn/phpbb/trunk@1233 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
| -rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index e1e7df2a55..429b08c87b 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -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); |
