diff options
author | friendica <info@friendica.com> | 2014-01-23 23:47:08 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-23 23:47:08 -0800 |
commit | 21f6549204f60670af55c7ba22a00f7d7eae9c2b (patch) | |
tree | 640ff22e55137031464411de53016b00a1b929b4 | |
parent | 34906049269853f58ab70f4a64441f3f8f1f2c5b (diff) | |
parent | ad67d3e48332204128209feb164c308af96e0ce1 (diff) | |
download | volse-hubzilla-21f6549204f60670af55c7ba22a00f7d7eae9c2b.tar.gz volse-hubzilla-21f6549204f60670af55c7ba22a00f7d7eae9c2b.tar.bz2 volse-hubzilla-21f6549204f60670af55c7ba22a00f7d7eae9c2b.zip |
Merge https://github.com/friendica/red into zpull
-rw-r--r-- | include/conversation.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php index 46a01d3c9..cec5993b6 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1301,7 +1301,8 @@ function prepare_page($item) { $naked = ((get_pconfig($item['uid'],'system','nakedpage')) ? 1 : 0); $observer = $a->get_observer(); $zid = ($observer['xchan_addr']); - $preview = substr(urlencode($item['body']), 0, 100); + //240 chars is the longest we can have before we start hitting problems with suhosin sites + $preview = substr(urlencode($item['body']), 0, 240); $link = z_root() . '/' . $a->cmd; if(array_key_exists('webpage',$a->layout) && array_key_exists('authored',$a->layout['webpage'])) { if($a->layout['webpage']['authored'] === 'none') @@ -1316,7 +1317,7 @@ function prepare_page($item) { '$title' => smilies(bbcode($item['title'])), '$body' => prepare_body($item,true), '$preview' => $preview, - '$link' => $link + '$link' => $link, )); } |