save location at notice post time

This commit is contained in:
Evan Prodromou 2009-12-22 21:58:23 -08:00
parent fa0fbd0118
commit 725b2d0475
1 changed files with 8 additions and 0 deletions

View File

@ -169,6 +169,14 @@ class NewnoticeAction extends Action
$location_id = $this->trimmed('location_id');
$location_ns = $this->trimmed('location_ns');
if (!empty($lat) && !empty($lon) && empty($location_id)) {
$location = Location::fromLatLon($lat, $lon);
if (!empty($location)) {
$location_id = $location->location_id;
$location_ns = $location->location_ns;
}
}
$upload = null;
$upload = MediaFile::fromUpload('attach');