From cdc572c767c6a177d1cf3ff72e093ff8cef31b50 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 30 Mar 2015 09:36:49 -0700 Subject: [PATCH] Made User::validateCache account for mQuickTouched Change-Id: I3b733a0221462350f3a24d54ffe814357f379512 --- includes/User.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/User.php b/includes/User.php index 590359989a..7f30263c86 100644 --- a/includes/User.php +++ b/includes/User.php @@ -2310,8 +2310,7 @@ class User implements IDBAccessObject { * @return bool */ public function validateCache( $timestamp ) { - $this->load(); - return ( $timestamp >= $this->mTouched ); + return ( $timestamp >= $this->getTouched() ); } /** -- 2.20.1