triggerFilter -> pass by reference (faster x5)

This commit is contained in:
slawkens
2025-05-08 18:34:36 +02:00
parent 99997eb57d
commit 5b4b7b8a97
4 changed files with 5 additions and 7 deletions

View File

@@ -575,7 +575,7 @@ function template_footer(): string
$footer[] = base64_decode('UG93ZXJlZCBieSA8YSBocmVmPSJodHRwOi8vbXktYWFjLm9yZyIgdGFyZ2V0PSJfYmxhbmsiPk15QUFDLjwvYT4=');
global $hooks;
$footer = $hooks->triggerFilter(HOOK_FILTER_THEME_FOOTER, $footer);
$hooks->triggerFilter(HOOK_FILTER_THEME_FOOTER, $footer);
return implode('<br/>', $footer);
}