From: Chad Horohoe Date: Fri, 21 Nov 2008 00:22:44 +0000 (+0000) Subject: Typo (and incidentally, it works 100% now :) X-Git-Tag: 1.31.0-rc.0~44243 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22articles%22%2C%22id_article=%24id_article%22%29%20.%20%22?a=commitdiff_plain;h=c13deb1d79b68272767cce6c5c04dcef760b8e35;p=lhc%2Fweb%2Fwiklou.git Typo (and incidentally, it works 100% now :) --- diff --git a/includes/filerepo/ForeignAPIRepo.php b/includes/filerepo/ForeignAPIRepo.php index 5f9e609022..982508e44b 100644 --- a/includes/filerepo/ForeignAPIRepo.php +++ b/includes/filerepo/ForeignAPIRepo.php @@ -105,7 +105,7 @@ class ForeignAPIRepo extends FileRepo { 'list' => 'allimages', ) ); $ret = array(); foreach ( $results['query']['allimages'] as $img ) { - $ret[] = new ForeignAPIFile( Title::makeTitle( NS_IMAGE, $img['name'] ), $this, $result ); + $ret[] = new ForeignAPIFile( Title::makeTitle( NS_IMAGE, $img['name'] ), $this, $img ); } return $ret; }