Merge remote-tracking branch 'mainline/1.0.x' into people_tags_rebase
Conflicts: lib/profileblock.php theme/default/css/display.css
This commit is contained in:
@@ -73,16 +73,21 @@ class User extends Memcached_DataObject
|
||||
/* the code above is auto generated do not remove the tag below */
|
||||
###END_AUTOCODE
|
||||
|
||||
protected $_profile = -1;
|
||||
|
||||
/**
|
||||
* @return Profile
|
||||
*/
|
||||
function getProfile()
|
||||
{
|
||||
$profile = Profile::staticGet('id', $this->id);
|
||||
if (empty($profile)) {
|
||||
throw new UserNoProfileException($this);
|
||||
if ($this->_profile == -1) { // invalid but distinct from null
|
||||
$this->_profile = Profile::staticGet('id', $this->id);
|
||||
if (empty($this->_profile)) {
|
||||
throw new UserNoProfileException($this);
|
||||
}
|
||||
}
|
||||
return $profile;
|
||||
|
||||
return $this->_profile;
|
||||
}
|
||||
|
||||
function isSubscribed($other)
|
||||
|
Reference in New Issue
Block a user