[phpMP-CVS] CVS: phpMP/includes template.php,1.41,1.42
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-06-29 08:34:40
|
Update of /cvsroot/phpmp/phpMP/includes In directory sc8-pr-cvs1:/tmp/cvs-serv27653 Modified Files: template.php Log Message: Oh well. Index: template.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/includes/template.php,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -r1.41 -r1.42 *** template.php 29 Jun 2003 08:33:38 -0000 1.41 --- template.php 29 Jun 2003 08:34:37 -0000 1.42 *************** *** 290,294 **** $compile_blocks = array(); ! for ($curr_tb = 1; $curr_tb < count($text_blocks); $curr_tb++) { switch ($blocks[1][$curr_tb]) --- 290,294 ---- $compile_blocks = array(); ! for ($curr_tb = 0; $curr_tb < count($text_blocks); $curr_tb++) { switch ($blocks[1][$curr_tb]) *************** *** 359,363 **** $template_php = ''; ! for ($i = 1; $i < count($text_blocks); $i++) { $trim_check_text = trim($text_blocks[$i]); --- 359,363 ---- $template_php = ''; ! for ($i = 0; $i < count($text_blocks); $i++) { $trim_check_text = trim($text_blocks[$i]); |