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/editpost.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/editpost.php')
-rw-r--r-- | mod/editpost.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mod/editpost.php b/mod/editpost.php index dfbc8766e..1d9855c95 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -9,7 +9,7 @@ function editpost_content(&$a) { $o = ''; - if(! local_user()) { + if(! local_channel()) { notice( t('Permission denied.') . EOL); return; } @@ -23,7 +23,7 @@ function editpost_content(&$a) { $itm = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d and author_xchan = '%s' LIMIT 1", intval($post_id), - intval(local_user()), + intval(local_channel()), dbesc(get_observer_hash()) ); @@ -33,7 +33,7 @@ function editpost_content(&$a) { } $plaintext = true; -// if(feature_enabled(local_user(),'richtext')) +// if(feature_enabled(local_channel(),'richtext')) // $plaintext = false; $channel = $a->get_channel(); @@ -77,7 +77,7 @@ function editpost_content(&$a) { $category = ''; - $catsenabled = ((feature_enabled(local_user(),'categories')) ? 'categories' : ''); + $catsenabled = ((feature_enabled(local_channel(),'categories')) ? 'categories' : ''); if ($catsenabled){ $itm = fetch_post_tags($itm); @@ -136,8 +136,8 @@ function editpost_content(&$a) { '$lockstate' => $lockstate, '$acl' => '', '$bang' => '', - '$profile_uid' => local_user(), - '$preview' => true, // ((feature_enabled(local_user(),'preview')) ? t('Preview') : ''), + '$profile_uid' => local_channel(), + '$preview' => true, // ((feature_enabled(local_channel(),'preview')) ? t('Preview') : ''), '$jotplugins' => $jotplugins, '$sourceapp' => t($a->sourcename), '$catsenabled' => $catsenabled, |