From: Evan Prodromou Date: Sat, 11 Sep 2010 20:23:41 +0000 (-0400) Subject: note what 0 means for shorteners X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=76788d97902081800355c25d39a2b527bb282ea7;p=quix0rs-gnu-social.git note what 0 means for shorteners --- diff --git a/actions/urlsettings.php b/actions/urlsettings.php index dd191a807b..ddf8daa2ae 100644 --- a/actions/urlsettings.php +++ b/actions/urlsettings.php @@ -125,14 +125,14 @@ class UrlsettingsAction extends AccountSettingsAction _('URL longer than'), (!is_null($this->arg('maxurllength'))) ? $this->arg('maxurllength') : User_urlshortener_prefs::maxUrlLength($user), - _('URLs longer than this will be shortened.')); + _('URLs longer than this will be shortened, 0 means always shorten.')); $this->elementEnd('li'); $this->elementStart('li'); $this->input('maxnoticelength', _('Text longer than'), (!is_null($this->arg('maxnoticelength'))) ? $this->arg('maxnoticelength') : User_urlshortener_prefs::maxNoticeLength($user), - _('URLs in notices longer than this will be shortened.')); + _('URLs in notices longer than this will be shortened, 0 means always shorten.')); $this->elementEnd('li'); $this->elementEnd('ul'); $this->submit('save', _('Save'));