Skip to content

Commit

Permalink
Merge pull request phpbb#6629 from marc1706/ticket/17328
Browse files Browse the repository at this point in the history
[ticket/17328] Update requires for exporting events
  • Loading branch information
marc1706 authored Jun 2, 2024
2 parents a7b4f03 + efc8400 commit b5d1d03
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion phpBB/develop/export_events_for_bbcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ function validate_argument_count($arguments, $count)
require __DIR__ . '/../phpbb/event/rst_exporter.' . $phpEx;
require __DIR__ . '/../includes/functions.' . $phpEx;
require __DIR__ . '/../phpbb/event/recursive_event_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/iterator/recursive_dot_prefix_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/finder/recursive_dot_prefix_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/finder/recursive_path_iterator.' . $phpEx;

switch ($action)
{
Expand Down
3 changes: 2 additions & 1 deletion phpBB/develop/export_events_for_rst.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ function validate_argument_count($arguments, $count)
require __DIR__ . '/../phpbb/event/rst_exporter.' . $phpEx;
require __DIR__ . '/../includes/functions.' . $phpEx;
require __DIR__ . '/../phpbb/event/recursive_event_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/iterator/recursive_dot_prefix_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/finder/recursive_dot_prefix_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/finder/recursive_path_iterator.' . $phpEx;

switch ($action)
{
Expand Down
3 changes: 2 additions & 1 deletion phpBB/develop/export_events_for_wiki.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ function validate_argument_count($arguments, $count)
require __DIR__ . '/../phpbb/event/md_exporter.' . $phpEx;
require __DIR__ . '/../includes/functions.' . $phpEx;
require __DIR__ . '/../phpbb/event/recursive_event_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/iterator/recursive_dot_prefix_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/finder/recursive_dot_prefix_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/finder/recursive_path_iterator.' . $phpEx;

switch ($action)
{
Expand Down

0 comments on commit b5d1d03

Please sign in to comment.