Browse Source

fixed a counter name error with no actual impact

Frederic G. Marand 16 years ago
parent
commit
1dd3ed4468
1 changed files with 2 additions and 3 deletions
  1. 2 3
      ooo/Calc_Row.php

+ 2 - 3
ooo/Calc_Row.php

@@ -4,7 +4,7 @@
  *
  * Requires PHP 5.2
  *
- * @version $Id: Calc_Row.php,v 1.2 2007-08-06 06:17:06 marand Exp $
+ * @version $Id: Calc_Row.php,v 1.3 2007-08-06 16:31:38 marand Exp $
  * @license CeCILL 2.0
  * @copyright 2005-2006 Ouest Systemes Informatiques
  */
@@ -43,10 +43,9 @@ class Calc_Row
         }
       for ($j = 0 ; $j < $count  ; $j++)
         {
-        $cells[$iprop++] = new Calc_Cell($cellElement);  
+        $cells[$iCell++] = new Calc_Cell($cellElement);  
         }
       }
-    
     return $cells;
     }