|
From: mdw c. <myd...@li...> - 2002-02-19 18:38:02
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/include
Modified Files:
gui.inc.php
Log Message:
Adding the thread concept in the comments
we are close to forum aren't we ? ;-)
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/gui.inc.php,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -3 -r1.49 -r1.50
--- gui.inc.php 6 Feb 2002 14:08:18 -0000 1.49
+++ gui.inc.php 19 Feb 2002 18:37:32 -0000 1.50
@@ -129,8 +129,7 @@
-function get_piece_of_news($title, $text, $image, $image_alt, $link,
- $nbhit, $num_news, $num_cmt, $num_byte, $DBH)
+function get_piece_of_news($title, $text, $image, $image_alt, $link, $nbhit, $num_news, $num_cmt, $num_byte, $num_threads, $DBH)
{
// set the hash templates
@@ -140,6 +139,8 @@
$VALUES['PAGE_BOX_LINES'] = PAGE_BOX_LINES;
$VALUES['PAGE_TEXTE_BACK'] = PAGE_TEXTE_BACK;
$VALUES['PAGE_TITRE_BACK'] = PAGE_TITRE_BACK;
+ $VALUES['NBTHREADS'] = $num_threads;
+ $VALUES['THREADS'] = translate('THREADS', $DBH);
$VALUES['TITLE'] = $title;
$VALUES['TEXT'] = $text;
$VALUES['LINK'] = $link;
|