From c14a0bf4298c5a4d279468a7667bed2e19a1d6d2 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Tue, 16 Nov 2010 16:48:20 +0000 Subject: [PATCH] Fix stupid get vs. set typo in nextJobDB.php --- maintenance/nextJobDB.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/nextJobDB.php b/maintenance/nextJobDB.php index 808e9fab6a..7f6aa40073 100644 --- a/maintenance/nextJobDB.php +++ b/maintenance/nextJobDB.php @@ -41,7 +41,7 @@ class nextJobDB extends Maintenance { # If we didn't get it from the cache if ( !$pendingDBs ) { $pendingDBs = $this->getPendingDbs( $type ); - $wgMemc->get( $mckey, $pendingDBs, 300 ); + $wgMemc->set( $mckey, $pendingDBs, 300 ); } # If we've got a pending job in a db, display it. if ( $pendingDBs ) { -- 2.20.1