From d7b5a606fb7992cfc29fac4bc19429da08972364 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 6 Jul 2011 20:27:18 -0700 Subject: don't show mailbox settings at all if disabled --- mod/settings.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mod/settings.php') diff --git a/mod/settings.php b/mod/settings.php index ea71f7020..e11555687 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -115,6 +115,8 @@ function settings_post(&$a) { $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1); + if(get_config('system','dfrn_only')) + $mail_disabled = 1; if(! $mail_disabled) { $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1", @@ -355,6 +357,8 @@ function settings_content(&$a) { $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1); + if(get_config('system','dfrn_only')) + $mail_disabled = 1; if(! $mail_disabled) { $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1", -- cgit v1.2.3