add lat, lon, location and remove closing tag from geocode.php

This commit is contained in:
Evan Prodromou 2010-01-30 12:47:21 -05:00
parent 1b7cc3393a
commit def5d56ce1

View File

@ -42,6 +42,10 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
*/ */
class GeocodeAction extends Action class GeocodeAction extends Action
{ {
var $lat = null;
var $lon = null;
var $location = null;
function prepare($args) function prepare($args)
{ {
parent::prepare($args); parent::prepare($args);
@ -90,4 +94,3 @@ class GeocodeAction extends Action
return true; return true;
} }
} }
?>