diff options
author | Evan Prodromou <evan@status.net> | 2010-01-30 12:47:21 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-30 12:47:21 -0500 |
commit | def5d56ce1582c785cbff7d49103493b293838bb (patch) | |
tree | d752645145f44f492b38e55afb7a16812cef0379 /actions | |
parent | 1b7cc3393a6a039d4adcf955b3a79fe3c5cc6f47 (diff) |
add lat, lon, location and remove closing tag from geocode.php
Diffstat (limited to 'actions')
-rw-r--r-- | actions/geocode.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/actions/geocode.php b/actions/geocode.php index 7fd696baf..e883c6ce4 100644 --- a/actions/geocode.php +++ b/actions/geocode.php @@ -42,6 +42,10 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { */ class GeocodeAction extends Action { + var $lat = null; + var $lon = null; + var $location = null; + function prepare($args) { parent::prepare($args); @@ -90,4 +94,3 @@ class GeocodeAction extends Action return true; } } -?> |