]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/geocode.php
OAuth: Fix rare problem in which request tokens were sometimes being
[quix0rs-gnu-social.git] / actions / geocode.php
index 7fd696baf9ef32c804a73f7187a7179700ac6a92..d934930608fa448a0d73ffbe554737c41d78f7f9 100644 (file)
@@ -37,11 +37,16 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  * @category Action
  * @package  StatusNet
  * @author   Craig Andrews <candrews@integralblue.com>
+ * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  * @link     http://status.net/
  */
 class GeocodeAction extends Action
 {
+    var $lat = null;
+    var $lon = null;
+    var $location = null;
+
     function prepare($args)
     {
         parent::prepare($args);
@@ -90,4 +95,3 @@ class GeocodeAction extends Action
         return true;
     }
 }
-?>