Last modified: 2010-05-15 15:38:37 UTC
On PHP 5.1 a fatal error occurs when I call importDump.php on the pages.xml. $next_line = array_shift(array_splice( $a, $k + 1, 1) ); Because array_shift() requires a reference as parameter, no value. So $arrTemp = array_splice( $a, $k + 1, 1); $next_line = array_shift( $arrTemp); does work. Keep up the good work, René
Bug is triggered with links in image captions, such as: [[Image:Foo|[[blah]]]]
Fixed in CVS HEAD and REL1_5.