]> git.mxchange.org Git - friendica.git/commitdiff
Only show connectors when not "hide wall" is enabled.
authorMichael Vogel <icarus@dabo.de>
Fri, 9 May 2014 22:24:15 +0000 (00:24 +0200)
committerMichael Vogel <icarus@dabo.de>
Fri, 9 May 2014 22:24:15 +0000 (00:24 +0200)
include/conversation.php

index 8e868afec70db2369613c553f0c31ed6c92ed2c3..ddb01ec9b8a3e3a63e88bc71db9960bfaaac0fc2 100644 (file)
@@ -1043,13 +1043,18 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
                }
        }
 
-       if($mail_enabled) {
-               $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
-               $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> ' . t("Post to Email") . '</div>';
-       }
+       if (!$a->user['hidewall']) {
+               if($mail_enabled) {
+                       $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
+                       $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> ' . t("Post to Email") . '</div>';
+               }
+
+               call_hooks('jot_networks', $jotnets);
+       } else
+               $jotnets .= sprintf(t('Connectors disabled, since "%s" is enabled.'),
+                                   t('Hide your profile details from unknown viewers?'));
 
        call_hooks('jot_tool', $jotplugins);
-       call_hooks('jot_networks', $jotnets);
 
        if($notes_cid)
                $jotnets .= '<input type="hidden" name="contact_allow[]" value="' . $notes_cid .'" />';