diff options
| author | Brett Profitt <brett.profitt@gmail.com> | 2011-10-29 15:10:48 -0700 | 
|---|---|---|
| committer | Brett Profitt <brett.profitt@gmail.com> | 2011-10-29 15:10:48 -0700 | 
| commit | 6971caddb2245bec34fd23927f6f093e5b28c1ea (patch) | |
| tree | a8c78a2b8f79201e04696687ad095e81eeee1805 /engine/classes | |
| parent | 3e4641537ff66b7e634f83e7a3386df9273ec9ff (diff) | |
| parent | 9046723db0c21cd0995ec87e69734bd1f0edcae6 (diff) | |
| download | elgg-6971caddb2245bec34fd23927f6f093e5b28c1ea.tar.gz elgg-6971caddb2245bec34fd23927f6f093e5b28c1ea.tar.bz2  | |
Merge branch 'master' of github.com:Elgg/Elgg
Diffstat (limited to 'engine/classes')
| -rw-r--r-- | engine/classes/ElggEntity.php | 15 | ||||
| -rw-r--r-- | engine/classes/Locatable.php | 2 | 
2 files changed, 9 insertions, 8 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');  	}  	/* diff --git a/engine/classes/Locatable.php b/engine/classes/Locatable.php index 0977dde99..7287d9798 100644 --- a/engine/classes/Locatable.php +++ b/engine/classes/Locatable.php @@ -13,7 +13,7 @@ interface Locatable {  	 * @param string $location Textual representation of location  	 *  	 * @return bool -	 **/ +	 */  	public function setLocation($location);  	/**  | 
