Note: this list is kept only as a demonstration for CVSNotice. For the latest CVS notices, see the Xaraya and Postnuke sites
View Statistics - Next Notice - Previous NoticeDirectory filter : [ all ] / postnuke_official / html / modules / comments / rendering [ view in CVS ]
Date | Directory [filter] | File(s) [view] | Author [filter] |
04 Aug 2002 08:42:23 | postnuke_official/html/modules/comments/rendering | threaded.php,1.9,1.10 | Carl P. Corliss |
boom shakalaka!!! :) |
Update of /home/cvsroot/postnuke_official/html/modules/comments/rendering In directory ns7.hostnuke.net:/tmp/cvs-serv26728/html/modules/Comments/rendering Modified Files: threaded.php Log Message: boom shakalaka!!! :) so um.. yeah.. bet you can't guess what this is ... More bugfixes!!!! woohooooooo!!! Index: threaded.php =================================================================== RCS file: /home/cvsroot/postnuke_official/html/modules/comments/rendering/threaded.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** threaded.php 4 Aug 2002 03:46:18 -0000 1.9 --- threaded.php 4 Aug 2002 08:42:21 -0000 1.10 *************** *** 99,103 **** if (empty($matrix)) { ! array_pad($matrix, 10, _COM_NO_CONNECTOR); } --- 99,103 ---- if (empty($matrix)) { ! array_pad($matrix, _COM_MAX_DEPTH, _COM_NO_CONNECTOR); } *************** *** 106,110 **** } ! return $matrix[($depth)]; } --- 106,110 ---- } ! return @$matrix[($depth)]; } *************** *** 125,130 **** $current_depth = $CommentList[$counter]['depth']; ! $next_depth = $CommentList[$counter-1]['depth']; ! $prev_depth = $CommentList[$counter+1]['depth']; // first start by placing the depth point in the matrix --- 125,130 ---- $current_depth = $CommentList[$counter]['depth']; ! $next_depth = (($counter -1) < 0 ? -1 : $CommentList[$counter-1]['depth']); ! $prev_depth = (($counter +1) > $listsize ? -1 : $CommentList[$counter+1]['depth']); // first start by placing the depth point in the matrix
View Statistics - Next Notice - Previous Notice
Visit Developer Site - Browse CVS Repository |
Syndicate via backend.rss (max. once per hour please) | Powered by CVSNotice 0.1.3 |