]> git.mxchange.org Git - friendica.git/blobdiff - mod/editpost.php
Merge pull request #6530 from Ixiter/develop-theme-frio
[friendica.git] / mod / editpost.php
index 1e53285830dd5d2d272cc8182076bd878a704999..c1c0d16d7fd712497476e6c7742a23624dac119d 100644 (file)
@@ -2,10 +2,9 @@
 /**
  * @file mod/editpost.php
  */
+
 use Friendica\App;
 use Friendica\Content\Feature;
-use Friendica\Core\Addon;
-use Friendica\Core\Config;
 use Friendica\Core\Hook;
 use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
@@ -64,25 +63,6 @@ function editpost_content(App $a)
        $jotplugins = '';
        $jotnets = '';
 
-       $mail_disabled = ((function_exists('imap_open') && !Config::get('system', 'imap_disabled')) ? 0 : 1);
-
-       $mail_enabled = false;
-       $pubmail_enabled = false;
-
-       if (!$mail_disabled) {
-               $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
-                       intval(local_user())
-               );
-
-               if (DBA::isResult($r)) {
-                       $mail_enabled = true;
-
-                       if (intval($r[0]['pubmail'])) {
-                               $pubmail_enabled = true;
-                       }
-               }
-       }
-
        Hook::callAll('jot_tool', $jotplugins);
 
        $tpl = Renderer::getMarkupTemplate("jot.tpl");