From 76788d97902081800355c25d39a2b527bb282ea7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 11 Sep 2010 16:23:41 -0400 Subject: [PATCH] note what 0 means for shorteners --- actions/urlsettings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')); -- 2.39.5