From: Siebrand Mazeland Date: Fri, 22 Nov 2013 20:11:31 +0000 (+0100) Subject: Fix incorrect array type X-Git-Tag: 1.31.0-rc.0~17955^2~1 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=7f5c64a0ee3b7d5a3dcfd8697dd922d566574643;p=lhc%2Fweb%2Fwiklou.git Fix incorrect array type Change-Id: I92193b46716d78125c8bce0ad9b2b098885b0a37 --- diff --git a/includes/externalstore/ExternalStoreMedium.php b/includes/externalstore/ExternalStoreMedium.php index 02bdcb51cf..6ab1f8c2ba 100644 --- a/includes/externalstore/ExternalStoreMedium.php +++ b/includes/externalstore/ExternalStoreMedium.php @@ -61,7 +61,7 @@ abstract class ExternalStoreMedium { // Dont return when false to allow for simpler implementations. // errored urls are handled in ExternalStore::batchFetchFromURLs if ( $data !== false ) { - $retval[$urls] = $data; + $retval[$url] = $data; } } return $retval;