]> git.mxchange.org Git - friendica-addons.git/commitdiff
Wrong types, why call $b so often ...
authorRoland Häder <roland@mxchange.org>
Thu, 23 Jun 2022 05:34:40 +0000 (07:34 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 23 Jun 2022 05:34:57 +0000 (07:34 +0200)
highlightjs/highlightjs.php

index e6ceff197212b2ebc232b7f1d14096e7f946946c..054cac983cec1ba3d48c6a353ff8dbc906eb4f37 100644 (file)
@@ -16,7 +16,7 @@ function highlightjs_install()
        Hook::register('footer', __FILE__, 'highlightjs_footer');
 }
 
-function highlightjs_head(App $a, array &$b)
+function highlightjs_head(App $a, strring &$b)
 {
        if ($a->getCurrentTheme() == 'frio') {
                $style = 'bootstrap';
@@ -27,7 +27,7 @@ function highlightjs_head(App $a, array &$b)
        DI::page()->registerStylesheet(__DIR__ . '/asset/styles/' . $style . '.css');
 }
 
-function highlightjs_footer(App $a, array &$b)
+function highlightjs_footer(App $a, string &$b)
 {
        DI::page()->registerFooterScript(__DIR__ . '/asset/highlight.pack.js');
        DI::page()->registerFooterScript(__DIR__ . '/highlightjs.js');