On Tue, May 27, 2008 at 12:03 PM, catrope@svn.wikimedia.org wrote:
return array(array('selfmove'));
$errors[] = array(array('selfmove'));
[etc.]
Doesn't this make $errors an array of arrays of arrays, instead of just an array of arrays? I think you want
+ $errors[] = array('selfmove');
Simetrical schreef:
Doesn't this make $errors an array of arrays of arrays, instead of just an array of arrays? I think you want
$errors[] = array('selfmove');
Oops. Quick reponse.
Roan Kattouw (Catrope)
wikitech-l@lists.wikimedia.org