1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Fix: Avoid generating code without space between comma and function argument

Closes GH-650.
This commit is contained in:
Andreas Möller
2022-07-12 14:46:56 +02:00
committed by GitHub
parent 0ee0117c6b
commit 1d73c26c0b

View File

@@ -64,8 +64,8 @@ $bug_map = [
'/Fixed bug #([0-9]+)/' => '<?php bugfix(\1); ?'.'>',
'/Fixed PECL bug #([0-9]+)/' => '<?php peclbugfix(\1); ?'.'>',
'/Implemented FR #([0-9]+)/' => '<?php implemented(\1); ?'.'>',
'/GitHub PR #([0-9]+)/' => '<?php githubissuel(\'php/php-src\',\1); ?'.'>',
'/GH-([0-9]+)/' => '<?php githubissuel(\'php/php-src\',\1); ?'.'>',
'/GitHub PR #([0-9]+)/' => '<?php githubissuel(\'php/php-src\', \1); ?'.'>',
'/GH-([0-9]+)/' => '<?php githubissuel(\'php/php-src\', \1); ?'.'>',
];
foreach($entries as $module => $items) {