diff options
| author | cash <cash.costello@gmail.com> | 2011-10-29 15:07:43 -0400 | 
|---|---|---|
| committer | cash <cash.costello@gmail.com> | 2011-10-29 15:07:43 -0400 | 
| commit | 4106d50727d5a56ec1442b16e182fbd9acc6b167 (patch) | |
| tree | 461b4ed1050214bdd681b7368ba56d5cb5a4092e /engine/classes/ElggEntity.php | |
| parent | 508000e9e3a49c0f659279ba916bde4a771ed777 (diff) | |
| download | elgg-4106d50727d5a56ec1442b16e182fbd9acc6b167.tar.gz elgg-4106d50727d5a56ec1442b16e182fbd9acc6b167.tar.bz2 | |
Fixes #3201 updates rss view type for core Elgg
Diffstat (limited to 'engine/classes/ElggEntity.php')
| -rw-r--r-- | engine/classes/ElggEntity.php | 15 | 
1 files changed, 8 insertions, 7 deletions
| diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php index ccf88a6f7..fdf2a80ea 100644 --- a/engine/classes/ElggEntity.php +++ b/engine/classes/ElggEntity.php @@ -1434,10 +1434,11 @@ abstract class ElggEntity extends ElggData implements  	 *  	 * @param string $location String representation of the location  	 * -	 * @return true +	 * @return bool  	 */  	public function setLocation($location) { -		return $this->location = $location; +		$this->location = $location; +		return true;  	}  	/** @@ -1446,7 +1447,7 @@ abstract class ElggEntity extends ElggData implements  	 * @param float $lat  Latitude  	 * @param float $long Longitude  	 * -	 * @return true +	 * @return bool  	 * @todo Unimplemented  	 */  	public function setLatLong($lat, $long) { @@ -1459,20 +1460,20 @@ abstract class ElggEntity extends ElggData implements  	/**  	 * Return the entity's latitude.  	 * -	 * @return int +	 * @return float  	 * @todo Unimplemented  	 */  	public function getLatitude() { -		return $this->get('geo:lat'); +		return (float)$this->get('geo:lat');  	}  	/**  	 * Return the entity's longitude  	 * -	 * @return Int +	 * @return float  	 */  	public function getLongitude() { -		return $this->get('geo:long'); +		return (float)$this->get('geo:long');  	}  	/* | 
