summaryrefslogtreecommitdiff
path: root/lib/noticeform.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-12-31 12:52:39 +0000
committerSarven Capadisli <csarven@status.net>2009-12-31 12:52:39 +0000
commit58714808443204ecbd98b9763aeaeb1929341213 (patch)
tree5f9f06a3f38b9610e90a576e2fa2c282834813cb /lib/noticeform.php
parent4985582880b56f23226dfffb3f81140d8d4c055f (diff)
Moved shareLocation data from formActions() to formData()
Diffstat (limited to 'lib/noticeform.php')
-rw-r--r--lib/noticeform.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/noticeform.php b/lib/noticeform.php
index 0af497099..bfdab7738 100644
--- a/lib/noticeform.php
+++ b/lib/noticeform.php
@@ -203,6 +203,13 @@ class NoticeForm extends Form
$this->out->hidden('notice_data-location_id', empty($this->location_id) ? null : $this->location_id, 'location_id');
$this->out->hidden('notice_data-location_ns', empty($this->location_ns) ? null : $this->location_ns, 'location_ns');
+ if($this->user->shareLocation()) {
+ $this->out->elementStart('div',array('id' => 'notice_data-location_enabled_container', 'data-geocode-url' => common_local_url('geocode')));
+ $this->out->checkbox('notice_data-location_enabled',_('Share your location'));
+ $this->out->element('a', array('style' => 'display: none', 'target' => '_blank', 'id' => 'notice_data-location_name'), _('Finding your location...'));
+ $this->out->elementEnd('div');
+ }
+
Event::handle('EndShowNoticeFormData', array($this));
}
}
@@ -220,11 +227,5 @@ class NoticeForm extends Form
'name' => 'status_submit',
'type' => 'submit',
'value' => _('Send')));
- if($this->user->shareLocation()) {
- $this->out->elementStart('div',array('id' => 'notice_data-location_enabled_container', 'data-geocode-url' => common_local_url('geocode')));
- $this->out->checkbox('notice_data-location_enabled',_('Share your location'));
- $this->out->element('a', array('style' => 'display: none', 'target' => '_blank', 'id' => 'notice_data-location_name'), _('Finding your location...'));
- $this->out->elementEnd('div');
- }
}
}