]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/smoothly/theme.php
Ensure that the baseurl return value is a string
[friendica.git] / view / theme / smoothly / theme.php
index e20e9003f9c6ab9504f380015e7540bf000e4526..73ff81441c740ba2a30e62e2731a483eb6cb4b47 100644 (file)
@@ -1,4 +1,26 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ * Name: smoothly
+ *
+ * BEWARE: currently UNSUPPORTED
+ */
 
 /*
  * Name: Smoothly
@@ -14,12 +36,16 @@ use Friendica\App;
 use Friendica\Core\Renderer;
 use Friendica\DI;
 
+/*
+ * This script can be included even when the app is in maintenance mode which requires us to avoid any config call
+ */
+
 function smoothly_init(App $a) {
        Renderer::setActiveTemplateEngine('smarty3');
 
        $cssFile = null;
-       $ssl_state = null;
-       $baseurl = DI::baseUrl()->get($ssl_state);
+       $ssl_state = false;
+       $baseurl = (string)DI::baseUrl();
        DI::page()['htmlhead'] .= <<< EOT
 
 <script>
@@ -85,8 +111,8 @@ if (! function_exists('_js_in_foot')) {
        function _js_in_foot() {
                /** @purpose insert stuff in bottom of page
                */
-               $ssl_state = null;
-               $baseurl = DI::baseUrl()->get($ssl_state);
+               $ssl_state = false;
+               $baseurl = (string)DI::baseUrl();
                $bottom['$baseurl'] = $baseurl;
                $tpl = Renderer::getMarkupTemplate('bottom.tpl');