From: Michael Date: Sat, 20 Jan 2018 19:31:47 +0000 (+0000) Subject: Only enable "pubmail" when it is enabled X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b8c4332a2040cea440f6f5b746165be5f62d4d30;p=friendica.git Only enable "pubmail" when it is enabled --- diff --git a/mod/item.php b/mod/item.php index 18e4cefd3e..355d315baf 100644 --- a/mod/item.php +++ b/mod/item.php @@ -262,7 +262,7 @@ function item_post(App $a) { // if using the API, we won't see pubmail_enable - figure out if it should be set if ($api_source && $profile_uid && $profile_uid == local_user() && !$private) { if (function_exists('imap_open') && !Config::get('system', 'imap_disabled')) { - $pubmail_enabled = dba::exists('mailacct', ["`uid` = ? AND `server` != ?", local_user(), '']); + $pubmail_enabled = dba::exists('mailacct', ["`uid` = ? AND `server` != ? AND `pubmail`", local_user(), '']); } }