]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Bookmarklet.php
Some more API functions moved
[friendica.git] / src / Module / Bookmarklet.php
index 2d882e0fa58997894ec72a8f91e0098278b58c78..3551cfd1756beb5f35ee7ad69f6acf43c8e3d97b 100644 (file)
@@ -23,7 +23,6 @@ namespace Friendica\Module;
 
 use Friendica\BaseModule;
 use Friendica\Content\PageInfo;
-use Friendica\Core\ACL;
 use Friendica\DI;
 use Friendica\Module\Security\Login;
 use Friendica\Network\HTTPException;
@@ -39,7 +38,6 @@ class Bookmarklet extends BaseModule
        {
                $_GET['mode'] = 'minimal';
 
-               $app = DI::app();
                $config = DI::config();
 
                if (!local_user()) {
@@ -62,7 +60,7 @@ class Bookmarklet extends BaseModule
                                'title'            => trim($_REQUEST['title'] ?? '', '*'),
                                'content'          => $content
                        ];
-                       $output = status_editor($app, $x, 0, false);
+                       $output = DI::conversation()->statusEditor($x, 0, false);
                        $output .= "<script>window.resizeTo(800,550);</script>";
                } else {
                        $output = '<h2>' . DI::l10n()->t('The post was created') . '</h2>';