1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-27 20:10:18 +02:00

[ticket/12273] Fix missing classes in export_events_for_wiki.php

PHPBB3-12273
This commit is contained in:
Joas Schilling
2014-04-27 23:50:02 +02:00
parent 927c219b1f
commit e934cefe80

View File

@@ -46,6 +46,8 @@ validate_argument_count($argc, 1);
$action = $argv[1];
require __DIR__ . '/../phpbb/event/php_exporter.' . $phpEx;
require __DIR__ . '/../phpbb/event/md_exporter.' . $phpEx;
require __DIR__ . '/../phpbb/event/recursive_event_filter_iterator.' . $phpEx;
require __DIR__ . '/../phpbb/recursive_dot_prefix_filter_iterator.' . $phpEx;
switch ($action)
{