mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 03:42:55 +00:00
[qcomment] Fix wrong type hint for footer hook function
- Address https://github.com/friendica/friendica/issues/11630#issuecomment-1166188409
This commit is contained in:
parent
3c5d0dc0cd
commit
88739fcb70
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ function qcomment_install()
|
|||
Hook::register('footer' , __FILE__, 'qcomment_footer');
|
||||
}
|
||||
|
||||
function qcomment_footer(App $a, array &$b)
|
||||
function qcomment_footer(App $a, string &$b)
|
||||
{
|
||||
DI::page()->registerFooterScript('addon/qcomment/qcomment.js');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue