Fix bug in calling BC function handlers.

This commit is contained in:
Simon Wisselink
2023-01-10 14:45:58 +01:00
parent 9016dd9908
commit b424657fd9

View File

@@ -16,7 +16,7 @@ class BCPluginWrapper extends Base {
public function handle($params, Template $template) {
$func = $this->callback;
return $func($params, $template->smarty);
return $func($params, $template);
}
}