From 6178c3f31864ca86a7ede818d0ce0f40de341f58 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Barrois?= Date: Sun, 4 Nov 2012 23:51:19 +0100 Subject: [PATCH] Avoid useless profile fetches. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Profile should only be refetched if a different visibility level is requested. Signed-off-by: Raphaël Barrois --- classes/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/user.php b/classes/user.php index 4626b85..d2ecc1a 100644 --- a/classes/user.php +++ b/classes/user.php @@ -363,7 +363,7 @@ class User extends PlUser if (!$this->_profile_fetched || $forceFetch) { $this->_profile_fetched = true; $this->_profile = Profile::get($this, $fields, $visibility); - } else if ($this->_profile !== null && !$this->_profile->visibility->equals($visibility)) { + } else if ($this->_profile !== null && $visibility !== null && !$this->_profile->visibility->equals($visibility)) { return Profile::get($this, $fields, $visibility); } return $this->_profile; -- 2.1.4