summaryrefslogtreecommitdiff
path: root/lib/noticeform.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-12-31 18:08:21 +0000
committerSarven Capadisli <csarven@status.net>2009-12-31 18:08:21 +0000
commitdde6415a6a91eb6670a80279a344ab6cc56ef17d (patch)
tree659502c67ab3527ead4195f8f7232fa0d421767f /lib/noticeform.php
parente84bf0aa989ce40494f62e7355a49060e9918a63 (diff)
Moved JavaScript dependant stuff out of noticeform.
Diffstat (limited to 'lib/noticeform.php')
-rw-r--r--lib/noticeform.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/noticeform.php b/lib/noticeform.php
index 98f15ca09..7ed880442 100644
--- a/lib/noticeform.php
+++ b/lib/noticeform.php
@@ -207,9 +207,9 @@ class NoticeForm extends Form
$this->out->hidden('notice_data-location_id', empty($this->location_id) ? (empty($this->profile->location_id) ? null : $this->profile->location_id) : $this->location_id, 'location_id');
$this->out->hidden('notice_data-location_ns', empty($this->location_ns) ? (empty($this->profile->location_ns) ? null : $this->profile->location_ns) : $this->location_ns, 'location_ns');
- $this->out->elementStart('div',array('id' => 'notice_data-location_enabled_container', 'data-geocode-url' => common_local_url('geocode')));
+ $this->out->elementStart('div', array('id' => 'notice_data-location_wrap',
+ 'title' => common_local_url('geocode')));
$this->out->checkbox('notice_data-location_enabled', _('Share your location'), true);
- $this->out->element('a', array('id' => 'notice_data-location_name'), _('Finding your location...'));
$this->out->elementEnd('div');
}