forked from GNUsocial/gnu-social
		
	don't try to free faves in User
darcs-hash:20081002162739-5ed1f-7d83c69d986cc704ef1bb9703a105ac04ad38d06.gz
This commit is contained in:
		| @@ -267,14 +267,7 @@ class User extends Memcached_DataObject | ||||
| 	function hasFave($notice) { | ||||
| 		$fave = Fave::pkeyGet(array('user_id' => $this->id, | ||||
| 									'notice_id' => $notice->id)); | ||||
| 		if (!is_null($fave)) { | ||||
| 			$result = true; | ||||
| 		} else { | ||||
| 			$result = false; | ||||
| 		} | ||||
| 		$fave->free(); | ||||
| 		unset($fave); | ||||
| 		return $result; | ||||
| 		return ((is_null($fave)) ? false : true); | ||||
| 	} | ||||
| 	 | ||||
| 	function mutuallySubscribed($other) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user