From: Siebrand Mazeland Date: Wed, 30 Dec 2009 19:26:23 +0000 (+0100) Subject: Remove trailing space in checkbox text. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=024704e0b70cb29107929cc2cce0ddc6b2d2e42b;p=quix0rs-gnu-social.git Remove trailing space in checkbox text. --- diff --git a/lib/noticeform.php b/lib/noticeform.php index d85de9c22e..76715c35a4 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -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'); }