]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix for overlong RT trimming: don't trim if textlimit is 0 (unlimited)
authorBrion Vibber <brion@pobox.com>
Wed, 6 Jan 2010 00:15:12 +0000 (16:15 -0800)
committerBrion Vibber <brion@pobox.com>
Wed, 6 Jan 2010 00:16:25 +0000 (16:16 -0800)
classes/Notice.php

index 299ed696c17d1612fe3951311b82d886829ba03e..9fa022650f67cdd814df885e8cb57f0c636bb6e3 100644 (file)
@@ -1361,7 +1361,7 @@ class Notice extends Memcached_DataObject
                            $this->content);
 
         $maxlen = common_config('site', 'textlimit');
-        if (mb_strlen($content) > $maxlen) {
+        if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
             // Web interface and current Twitter API clients will
             // pull the original notice's text, but some older
             // clients and RSS/Atom feeds will see this trimmed text.