mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/15214] Fix test foo/foo extension listener
PHPBB3-15214
This commit is contained in:
parent
4a00212f2d
commit
09fd86ffb0
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ class template_event_order implements EventSubscriberInterface
|
|||
public function set_template_event_priority($event)
|
||||
{
|
||||
$template_event_priority_array = $event['template_event_priority_array'];
|
||||
$template_event_priority_array['foo_bar'] = [
|
||||
$template_event_priority_array['foo_foo'] = [
|
||||
'event/navbar_header_quick_links_after' => 1,
|
||||
];
|
||||
$event['template_event_priority_array'] = $template_event_priority_array;
|
||||
|
|
|
@ -30,7 +30,7 @@ class template_event_order implements EventSubscriberInterface
|
|||
public function set_template_event_priority($event)
|
||||
{
|
||||
$template_event_priority_array = $event['template_event_priority_array'];
|
||||
$template_event_priority_array['foo_bar'] = [
|
||||
$template_event_priority_array['foo_foo'] = [
|
||||
'event/navbar_header_quick_links_after' => -1,
|
||||
];
|
||||
$event['template_event_priority_array'] = $template_event_priority_array;
|
||||
|
|
Loading…
Add table
Reference in a new issue