From b300b9a2041da3a3263e249eb3021a311df6dc38 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Thu, 20 Jul 2006 14:52:02 +0000 Subject: [PATCH] fix bug in LinkBatch::execute(), it's meant to return an array --- includes/LinkBatch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } /** -- 2.20.1