diff options
-rw-r--r-- | include/conversation.php | 2 | ||||
-rw-r--r-- | mod/blocks.php | 1 | ||||
-rw-r--r-- | mod/layouts.php | 3 | ||||
-rw-r--r-- | mod/webpages.php | 3 |
4 files changed, 7 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php index 8c9029a43..fb012667e 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1095,6 +1095,8 @@ function status_editor($a, $x, $popup = false) { // $plaintext = false; $voting = feature_enabled(local_channel(), 'consensus_tools'); + if(x($x, 'novoting')) + $voting = false; $mimeselect = ''; if(array_key_exists('mimetype', $x) && $x['mimetype']) { diff --git a/mod/blocks.php b/mod/blocks.php index 23a66f8d9..56da9caf7 100644 --- a/mod/blocks.php +++ b/mod/blocks.php @@ -95,6 +95,7 @@ function blocks_content(&$a) { 'ptlabel' => t('Block Name'), 'profile_uid' => intval($owner), 'expanded' => true, + 'novoting' => true ); if($_REQUEST['title']) diff --git a/mod/layouts.php b/mod/layouts.php index 1d33ba845..2e45362ba 100644 --- a/mod/layouts.php +++ b/mod/layouts.php @@ -121,7 +121,8 @@ function layouts_content(&$a) { 'ptlabel' => t('Layout Name'), 'profile_uid' => intval($owner), 'expanded' => true, - 'placeholdertitle' => t('Layout Description (Optional)') + 'placeholdertitle' => t('Layout Description (Optional)'), + 'novoting' => true ); if($_REQUEST['title']) diff --git a/mod/webpages.php b/mod/webpages.php index 24d7b88b3..859c93fde 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -113,7 +113,8 @@ function webpages_content(&$a) { 'profile_uid' => intval($owner), 'mimetype' => $mimetype, 'layout' => $layout, - 'expanded' => true + 'expanded' => true, + 'novoting' => true ); if($_REQUEST['title']) |