]> 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 9cc5b4a2248104c05b5a2b74934d4c912e00203f..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
@@ -22,8 +44,8 @@ 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>
@@ -89,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');