Last modified: 2005-01-11 00:07:35 UTC
When you save the page there is reported a '''FATAL error''', and the processing ''completely shuts down'': <pre>Fatal error: [] operator not supported for strings in /www/mediawiki/includes/Article.php on line 534</pre> It concerns the function 'getSelectOptions', and if I understand the code correctly that functio can take either an array or a string as argument. Since there is no type checking an error is produced because the string is manipulated as if it were an array. The solution is quite simple: check wheter the argument is an array or a string. Concretely, it means that line (533): <pre>if ( $options ) {</pre> Has to be changed in this. <pre>if ( is_array( $options ) ) {</pre> Now I can use my Wiki again!
Fixed in CVS HEAD and CVS REL1_4.