From: Roan Kattouw Date: Tue, 16 Nov 2010 16:48:20 +0000 (+0000) Subject: Fix stupid get vs. set typo in nextJobDB.php X-Git-Tag: 1.31.0-rc.0~33854 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/Category:Foo?a=commitdiff_plain;h=c14a0bf4298c5a4d279468a7667bed2e19a1d6d2;p=lhc%2Fweb%2Fwiklou.git Fix stupid get vs. set typo in nextJobDB.php --- 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 ) {