diff options
author | friendica <info@friendica.com> | 2014-01-09 14:11:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-09 14:11:05 -0800 |
commit | fe7aa9926bd378c667e2434a49131b6c90cb9d72 (patch) | |
tree | 1fcd83668739db949269b54d614ffcab4ff45d7c /include | |
parent | ca570f97e00bd3b6356e15266b0595c7379058b1 (diff) | |
parent | bf31ec04cfceebc2657a8a573580cff036db5bef (diff) | |
download | volse-hubzilla-fe7aa9926bd378c667e2434a49131b6c90cb9d72.tar.gz volse-hubzilla-fe7aa9926bd378c667e2434a49131b6c90cb9d72.tar.bz2 volse-hubzilla-fe7aa9926bd378c667e2434a49131b6c90cb9d72.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'include')
-rw-r--r-- | include/identity.php | 4 | ||||
-rwxr-xr-x | include/items.php | 10 | ||||
-rwxr-xr-x | include/text.php | 2 |
3 files changed, 11 insertions, 5 deletions
diff --git a/include/identity.php b/include/identity.php index 5e25244e6..9fba55da5 100644 --- a/include/identity.php +++ b/include/identity.php @@ -1023,7 +1023,7 @@ function zid_init(&$a) { dbesc($tmp_str) ); // try to avoid recursion - but send them home to do a proper magic auth - $dest = '/' . $a->query_string; + $dest = '/' . urlencode($a->query_string); $dest = str_replace(array('?zid=','&zid='),array('?rzid=','&rzid='),$dest); if($r && ($r[0]['hubloc_url'] != z_root()) && (! strstr($dest,'/magic')) && (! strstr($dest,'/rmagic'))) { goaway($r[0]['hubloc_url'] . '/magic' . '?f=&rev=1&dest=' . z_root() . $dest); @@ -1140,4 +1140,4 @@ function is_foreigner($s) { function is_member($s) { return((is_foreigner($s)) ? false : true); -}
\ No newline at end of file +} diff --git a/include/items.php b/include/items.php index 781956882..d5eea1e6f 100755 --- a/include/items.php +++ b/include/items.php @@ -1602,8 +1602,14 @@ function item_store($arr,$allow_exec = false) { $arr['llink'] = z_root() . '/display/' . $arr['mid']; - if(! $arr['plink']) - $arr['plink'] = $arr['llink']; + if((! $arr['plink'])) { + if (local_user() && ($arr['item_flags'] & ITEM_THREAD_TOP)) { + $channel = get_app()->get_channel(); + $arr['plink'] = z_root() . '/channel/' . $channel['channel_address'] . '/?mid=' . $arr['mid']; + } else { + $arr['plink'] = $arr['llink']; + } + } if($arr['parent_mid'] === $arr['mid']) { $parent_id = 0; diff --git a/include/text.php b/include/text.php index 8b71fbddf..b47f0518a 100755 --- a/include/text.php +++ b/include/text.php @@ -1391,7 +1391,7 @@ function feed_salmonlinks($nick) { function get_plink($item,$mode) { $a = get_app(); - if($mode == 'display') + if(($mode == 'display') || ($mode == 'channel') || ($mode == 'network')) $key = 'plink'; else $key = 'llink'; |