fix bug in LinkBatch::execute(), it's meant to return an array
authorTim Starling <tstarling@users.mediawiki.org>
Thu, 20 Jul 2006 14:52:02 +0000 (14:52 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Thu, 20 Jul 2006 14:52:02 +0000 (14:52 +0000)
includes/LinkBatch.php

index e0f0f6f..061f1b1 100644 (file)
@@ -66,7 +66,7 @@ class LinkBatch {
         */
         function execute() {
                $linkCache =& LinkCache::singleton();
-               $this->executeInto( $linkCache );
+               return $this->executeInto( $linkCache );
         }
 
        /**