diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-02-14 11:32:43 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-02-14 11:32:43 +0100 |
commit | 0207b5ba8b60da0d87d32963f462254d51faddca (patch) | |
tree | 0a0c1cf8bd7fc50d824cc3b39624d493aaa2fba9 /Zotlabs | |
parent | ea541ca21b7983f7b8f17deb7452b1afed29547b (diff) | |
download | volse-hubzilla-0207b5ba8b60da0d87d32963f462254d51faddca.tar.gz volse-hubzilla-0207b5ba8b60da0d87d32963f462254d51faddca.tar.bz2 volse-hubzilla-0207b5ba8b60da0d87d32963f462254d51faddca.zip |
disable repeats until issues are resolved
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index 04265ee5a..40c0fca4b 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -311,7 +311,8 @@ class ThreadItem { // This actually turns out not to be possible in some protocol stacks without opening up hundreds of new issues. // Will allow it only for uri resolvable sources. if(strpos($item['mid'],'http') === 0) { - $share = array( t('Repeat This'), t('repeat')); + $share = []; //Not yet ready for primetime + //$share = array( t('Repeat This'), t('repeat')); } $embed = array( t('Share This'), t('share')); } |