]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Bookmarklet.php
Merge remote-tracking branch 'upstream/develop' into api4
[friendica.git] / src / Module / Bookmarklet.php
index d581b81e85b01360591782038e85ba72d091152d..5061254aa1e5e957eef433e6692cbd86f1cb35e4 100644 (file)
@@ -34,11 +34,10 @@ use Friendica\Util\Strings;
  */
 class Bookmarklet extends BaseModule
 {
-       public static function content(array $parameters = [])
+       public function content(): string
        {
                $_GET['mode'] = 'minimal';
 
-               $app = DI::app();
                $config = DI::config();
 
                if (!local_user()) {
@@ -61,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>';