]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add lat, lon, location and remove closing tag from geocode.php
authorEvan Prodromou <evan@status.net>
Sat, 30 Jan 2010 17:47:21 +0000 (12:47 -0500)
committerEvan Prodromou <evan@status.net>
Sat, 30 Jan 2010 17:47:21 +0000 (12:47 -0500)
actions/geocode.php

index 7fd696baf9ef32c804a73f7187a7179700ac6a92..e883c6ce4162950a4d0b0e23842cb78bbe015741 100644 (file)
@@ -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;
     }
 }
-?>