]> git.mxchange.org Git - friendica-addons.git/commitdiff
[cookienotice] Fix wrong type-hint in hook function cookienotice_page_content_top
authorHypolite Petovan <hypolite@mrpetovan.com>
Sun, 3 Jul 2022 04:26:55 +0000 (00:26 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sun, 3 Jul 2022 04:26:55 +0000 (00:26 -0400)
- Fix "Argument 2 passed to cookienotice_page_content_top() must be of the type array, string given" error

cookienotice/cookienotice.php

index 5364573ca3571cf16156e3ebd98169c2b96d6e12..d6e71cf041eca7a2641071c1bceb13d6e470cad8 100644 (file)
@@ -82,7 +82,7 @@ function cookienotice_addon_admin_post(App $a)
  *
  * @return void
  */
-function cookienotice_page_content_top(App $a, array &$b)
+function cookienotice_page_content_top(App $a, string &$b)
 {
        DI::page()->registerStylesheet(__DIR__ . '/cookienotice.css');
        DI::page()->registerFooterScript(__DIR__ . '/cookienotice.js');