From: Zach Copley Date: Mon, 11 Apr 2011 02:07:30 +0000 (-0700) Subject: Fix bad i18n function call X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3ddaa5bff44f052996ca78ff354542a4f411f05f;p=quix0rs-gnu-social.git Fix bad i18n function call --- diff --git a/lib/subscribepeopletagform.php b/lib/subscribepeopletagform.php index 6790747f26..4cc3a8e90b 100644 --- a/lib/subscribepeopletagform.php +++ b/lib/subscribepeopletagform.php @@ -103,6 +103,7 @@ class SubscribePeopletagForm extends Form function formActions() { // TRANS: Button text for subscribing to a people tag. - $this->out->submit('submit', m('BUTTON','Subscribe')); + $this->out->submit('submit', _m('BUTTON', 'Subscribe')); + } }