Make share previews a bit longer. We can't go any longer than this

without suhosin starting to break things for channels with long names
 - this limit works with the channel with the longest name in the matrix
today, but we may need to make this a pconfig anyway.
This commit is contained in:
Thomas Willingham 2014-01-24 03:44:50 +00:00
parent 357ddd1bf7
commit d57361ea4a

View File

@ -1296,12 +1296,18 @@ function render_location_default($item) {
function prepare_page($item) {
$foo = $item['owner_xchan'];
$a = get_app();
$upstreamshare = '1';
if ($foo == 'njsQ2vWa65pH-kwIKfGINOqDT2k_05ZIAeQxP9Ozk16z1WLTxTNlly4_vQKx2huTPCQqMz8shvgB3f7JVPzkdw') {
$upstreamshare = '';
}
$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 +1322,8 @@ function prepare_page($item) {
'$title' => smilies(bbcode($item['title'])),
'$body' => prepare_body($item,true),
'$preview' => $preview,
'$link' => $link
'$link' => $link,
'$upstreamshare' => $upstreamshare
));
}