From: Tim Starling Date: Thu, 20 Jul 2006 14:52:02 +0000 (+0000) Subject: fix bug in LinkBatch::execute(), it's meant to return an array X-Git-Tag: 1.31.0-rc.0~56176 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=b300b9a2041da3a3263e249eb3021a311df6dc38;p=lhc%2Fweb%2Fwiklou.git fix bug in LinkBatch::execute(), it's meant to return an array --- diff --git a/includes/LinkBatch.php b/includes/LinkBatch.php index e0f0f6fd10..061f1b191a 100644 --- a/includes/LinkBatch.php +++ b/includes/LinkBatch.php @@ -66,7 +66,7 @@ class LinkBatch { */ function execute() { $linkCache =& LinkCache::singleton(); - $this->executeInto( $linkCache ); + return $this->executeInto( $linkCache ); } /**