mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 07:18:08 +02:00
[ticket/15214] Fix test foo/foo extension listener
PHPBB3-15214
This commit is contained in:
@@ -30,7 +30,7 @@ class template_event_order implements EventSubscriberInterface
|
|||||||
public function set_template_event_priority($event)
|
public function set_template_event_priority($event)
|
||||||
{
|
{
|
||||||
$template_event_priority_array = $event['template_event_priority_array'];
|
$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/navbar_header_quick_links_after' => 1,
|
||||||
];
|
];
|
||||||
$event['template_event_priority_array'] = $template_event_priority_array;
|
$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)
|
public function set_template_event_priority($event)
|
||||||
{
|
{
|
||||||
$template_event_priority_array = $event['template_event_priority_array'];
|
$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/navbar_header_quick_links_after' => -1,
|
||||||
];
|
];
|
||||||
$event['template_event_priority_array'] = $template_event_priority_array;
|
$event['template_event_priority_array'] = $template_event_priority_array;
|
||||||
|
Reference in New Issue
Block a user