removed Profile_block::get, changed to use pkeyGet
darcs-hash:20081209041227-5ed1f-2edefdc79545da646a6fd40b15fd72809c15831c.gz
This commit is contained in:
parent
a68f513cc8
commit
facba2566b
@ -40,9 +40,4 @@ class Profile_block extends Memcached_DataObject
|
||||
|
||||
/* the code above is auto generated do not remove the tag below */
|
||||
###END_AUTOCODE
|
||||
|
||||
function get($blocker, $blocked) {
|
||||
return Profile_block::pkeyGet(array('blocker' => $blocker,
|
||||
'blocked' => $blocked));
|
||||
}
|
||||
}
|
||||
|
@ -145,7 +145,9 @@ class User extends Memcached_DataObject
|
||||
}
|
||||
|
||||
function hasBlocked($other) {
|
||||
$block = Profile_block::get($this->id, $other->id);
|
||||
|
||||
$block = Profile_block::pkeyGet(array('blocker' => $this->id,
|
||||
'blocked' => $other->id));
|
||||
|
||||
if (is_null($block)) {
|
||||
$result = false;
|
||||
@ -465,7 +467,8 @@ class User extends Memcached_DataObject
|
||||
|
||||
# Get the block record
|
||||
|
||||
$block = Profile_block::get($this->id, $other->id);
|
||||
$block = Profile_block::pkeyGet(array('blocker' => $this->id,
|
||||
'blocked' => $other->id));
|
||||
|
||||
if (!$block) {
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user