|
From: Paul S. O. <ps...@us...> - 2002-05-17 13:31:59
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv3880
Modified Files:
Tag: phpBB-2_0_0
viewforum.php
Log Message:
More updates ... added Date and Content-type/encoding output for the emails, updated all email templates
Index: viewforum.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewforum.php,v
retrieving revision 1.139.2.4
retrieving revision 1.139.2.5
diff -C2 -r1.139.2.4 -r1.139.2.5
*** viewforum.php 14 May 2002 15:19:20 -0000 1.139.2.4
--- viewforum.php 17 May 2002 13:14:05 -0000 1.139.2.5
***************
*** 258,262 ****
$row = $db->sql_fetchrow($result);
! $topics_count = ( $forum_row['forum_topics'] ) ? $forum_row['forum_topics'] : 1;
$limit_topics_time = "AND p.post_time >= $min_topic_time";
--- 258,262 ----
$row = $db->sql_fetchrow($result);
! $topics_count = ( $row['forum_topics'] ) ? $row['forum_topics'] : 1;
$limit_topics_time = "AND p.post_time >= $min_topic_time";
|