Merge pull request #1271 from MrPetovan/bug/fatal-errors

[cookienotice] Fix wrong type-hint in hook function cookienotice_page_end
This commit is contained in:
Tobias Diekershoff 2022-07-03 14:46:26 +02:00 committed by GitHub
commit ed1de0cd18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ function cookienotice_page_content_top(App $a, string &$b)
*
* @return void
*/
function cookienotice_page_end(App $a, array &$b)
function cookienotice_page_end(App $a, string &$b)
{
$text = (string)DI::config()->get('cookienotice', 'text', DI::l10n()->t('This website uses cookies to recognize revisiting and logged in users. You accept the usage of these cookies by continue browsing this website.'));
$oktext = (string)DI::config()->get('cookienotice', 'oktext', DI::l10n()->t('OK'));