mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
[ticket/13807] Only output the header for diff
PHPBB3-13807
This commit is contained in:
parent
34141b576e
commit
45baaf6022
1 changed files with 7 additions and 6 deletions
|
@ -71,17 +71,18 @@ require __DIR__ . '/../phpbb/recursive_dot_prefix_filter_iterator.' . $phpEx;
|
|||
|
||||
switch ($action)
|
||||
{
|
||||
case 'all':
|
||||
echo '__FORCETOC__' . "\n";
|
||||
|
||||
case 'diff':
|
||||
if ($action === 'diff')
|
||||
{
|
||||
echo '== Event changes ==' . "\n";
|
||||
}
|
||||
echo '== Event changes ==' . "\n";
|
||||
$min_version = $extension;
|
||||
$extension = isset($argv[3]) ? $argv[3] : null;
|
||||
|
||||
case 'all':
|
||||
if ($action === 'all')
|
||||
{
|
||||
echo '__FORCETOC__' . "\n";
|
||||
}
|
||||
|
||||
|
||||
case 'php':
|
||||
$exporter = new \phpbb\event\php_exporter($phpbb_root_path, $extension, $min_version);
|
||||
|
|
Loading…
Add table
Reference in a new issue