|
From: Paul S. O. <ps...@us...> - 2001-10-16 23:34:48
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv2509
Modified Files:
viewtopic.php
Log Message:
Minor change to message output when no posts exist
Index: viewtopic.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v
retrieving revision 1.123
retrieving revision 1.124
diff -C2 -r1.123 -r1.124
*** viewtopic.php 2001/10/16 16:38:01 1.123
--- viewtopic.php 2001/10/16 23:34:45 1.124
***************
*** 399,403 ****
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);
}
$postrow = $db->sql_fetchrowset($result);
--- 399,403 ----
if(!$total_posts = $db->sql_numrows($result))
{
! message_die(GENERAL_MESSAGE, $lang['No_posts_topic']);
}
$postrow = $db->sql_fetchrowset($result);
|