]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Bookmarklet.php
Merge pull request #12459 from MrPetovan/bug/12454-link-preview-translation
[friendica.git] / src / Module / Bookmarklet.php
index 5061254aa1e5e957eef433e6692cbd86f1cb35e4..8d64c97e42cb9b1331d2109a33f005d1baa1d0b4 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -34,13 +34,13 @@ use Friendica\Util\Strings;
  */
 class Bookmarklet extends BaseModule
 {
-       public function content(): string
+       protected function content(array $request = []): string
        {
                $_GET['mode'] = 'minimal';
 
                $config = DI::config();
 
-               if (!local_user()) {
+               if (!DI::userSession()->getLocalUserId()) {
                        $output = '<h2>' . DI::l10n()->t('Login') . '</h2>';
                        $output .= Login::form(DI::args()->getQueryString(), intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true);
                        return $output;