ClausVB
Administrator
mwCMS supporter
    
Posts: 73

|
 |
« Reply #1 on: Monday, July 28, 2008 (13:56) » |
|
Fixed in the next release.
<?php (...)
/** * Converts the specified lines into an array. * * @param integer $from: first linenumber to convert (scope: 1 to N) * @param integer $to: last linumber to convert (scope: $from to N) * @param array $internalHyperlinks: URI => navigation (e.g. [01_home] => Home) * @return array $loopArrayRows: the array with the parsed rows **/ function ParseLinesIntoArray($from, $to, $internalHyperlinks) { $loopArrayRows = array(); // initialize LOOP Array for ($i = $from; $i <= $to; $i++) { array_push( $loopArrayRows, array( 'nummer' => $i, 'topnav_content' => $this->ParsingEveryLine( $this->lines[$i], $internalHyperlinks ) ) ); }
return $loopArrayRows; }
(...) ?>
|