summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-30 12:47:21 -0500
committerEvan Prodromou <evan@status.net>2010-01-30 12:47:21 -0500
commitdef5d56ce1582c785cbff7d49103493b293838bb (patch)
treed752645145f44f492b38e55afb7a16812cef0379
parent1b7cc3393a6a039d4adcf955b3a79fe3c5cc6f47 (diff)
add lat, lon, location and remove closing tag from geocode.php
-rw-r--r--actions/geocode.php5
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;
}
}
-?>