diff options
author | friendica <info@friendica.com> | 2015-01-28 20:56:04 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-28 20:56:04 -0800 |
commit | a4960360669daa0a0c842427185ce1ada3b4ab97 (patch) | |
tree | 53feb1009266a77ee5338cc49919e45cca4b5ca6 /mod/share.php | |
parent | 54fd8b21db2d8f3841cf590f88611a1d4f44ce48 (diff) | |
download | volse-hubzilla-a4960360669daa0a0c842427185ce1ada3b4ab97.tar.gz volse-hubzilla-a4960360669daa0a0c842427185ce1ada3b4ab97.tar.bz2 volse-hubzilla-a4960360669daa0a0c842427185ce1ada3b4ab97.zip |
local_user => local_channel
Diffstat (limited to 'mod/share.php')
-rw-r--r-- | mod/share.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/share.php b/mod/share.php index d70336ed1..2fb3d95cc 100644 --- a/mod/share.php +++ b/mod/share.php @@ -10,7 +10,7 @@ function share_init(&$a) { if(! $post_id) killme(); - if(! (local_user() || remote_user())) + if(! (local_channel() || remote_user())) killme(); @@ -39,7 +39,7 @@ function share_init(&$a) { // on your home site. // When that works remove this next bit: - if(! local_user()) + if(! local_channel()) killme(); xchan_query($r); @@ -60,7 +60,7 @@ function share_init(&$a) { $o.= "[/share]"; } - if(local_user()) { + if(local_channel()) { echo $o; killme(); } |