Remove trailing space in checkbox text.

This commit is contained in:
Siebrand Mazeland 2009-12-30 20:26:23 +01:00
parent d46515da42
commit 024704e0b7
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ class NoticeForm extends Form
'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->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');
}