diff options
author | friendica <info@friendica.com> | 2015-02-10 19:10:18 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-10 19:10:18 -0800 |
commit | 79223b6b3d38bfbfb3a6d9530f6ccc5b7bb096c8 (patch) | |
tree | 18ee5a91f1ce6e8d4c964174549ac10f4ab949be /mod/editpost.php | |
parent | 79da33dafdac1427ac07b4414a5da5f9f3a2b03d (diff) | |
download | volse-hubzilla-79223b6b3d38bfbfb3a6d9530f6ccc5b7bb096c8.tar.gz volse-hubzilla-79223b6b3d38bfbfb3a6d9530f6ccc5b7bb096c8.tar.bz2 volse-hubzilla-79223b6b3d38bfbfb3a6d9530f6ccc5b7bb096c8.zip |
item voting tools
Diffstat (limited to 'mod/editpost.php')
-rw-r--r-- | mod/editpost.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/editpost.php b/mod/editpost.php index 1d9855c95..bdd3be450 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -74,7 +74,8 @@ function editpost_content(&$a) { $channel = $a->get_channel(); //$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins)); - + + $voting = feature_enabled(local_channel(),'consensus_tools'); $category = ''; $catsenabled = ((feature_enabled(local_channel(),'categories')) ? 'categories' : ''); @@ -118,6 +119,9 @@ function editpost_content(&$a) { '$audio' => t('Insert Vorbis [.ogg] audio'), '$setloc' => t('Set your location'), '$noloc' => t('Clear browser location'), + '$voting' => t('Toggle voting'), + '$feature_voting' => $voting, + '$consensus' => (($itm[0]['item_flags'] & ITEM_CONSENSUS) ? 1 : 0), '$wait' => t('Please wait'), '$permset' => t('Permission settings'), '$ptyp' => $itm[0]['type'], |