From d5bab421f4ab1b83142d9a655072caab411802bd Mon Sep 17 00:00:00 2001 From: Domas Mituzas Date: Mon, 11 Oct 2004 04:13:43 +0000 Subject: [PATCH] fix from live site, set->add for "loading". --- includes/MessageCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/MessageCache.php b/includes/MessageCache.php index 2a31c0d92e..eb56bf1b9c 100755 --- a/includes/MessageCache.php +++ b/includes/MessageCache.php @@ -74,7 +74,7 @@ class MessageCache wfDebug( "MessageCache::load(): loading all messages\n" ); $this->lock(); # Other threads don't need to load the messages if another thread is doing it. - $success = $this->mMemc->set( $this->mMemcKey, "loading", MSG_LOAD_TIMEOUT ); + $success = $this->mMemc->add( $this->mMemcKey, "loading", MSG_LOAD_TIMEOUT ); if ( $success ) { wfProfileIn( $fname.'-load' ); $this->loadFromDB(); -- 2.20.1