diff options
author | Sarven Capadisli <csarven@status.net> | 2010-01-03 00:33:41 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-01-03 00:33:41 +0000 |
commit | ec5850d26a46b88c14579959c8bcf34e936b087e (patch) | |
tree | d641cf2a25288cfb64dd09d4147c65682527d8ec /lib/noticeform.php | |
parent | f990237c03ab8f5e2a7b3e90d79566b0901bec9b (diff) |
Changed location share representation to be more like the file
attachment. Init UI. Probably a little buggy.
Diffstat (limited to 'lib/noticeform.php')
-rw-r--r-- | lib/noticeform.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/noticeform.php b/lib/noticeform.php index d35655a0b..99865645a 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -208,9 +208,8 @@ class NoticeForm extends Form $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_wrap', - 'class' => 'success', 'title' => common_local_url('geocode'))); - $this->out->checkbox('notice_data-location_enabled', _('Share your location'), true); + $this->out->checkbox('notice_data-geo', _('Share your location'), true); $this->out->elementEnd('div'); } |