Skip to content

Commit 1d73c26

Browse files
authored
Fix: Avoid generating code without space between comma and function argument
Closes GH-650.
1 parent 0ee0117 commit 1d73c26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/news2html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ $bug_map = [
6464
'/Fixed bug #([0-9]+)/' => '<?php bugfix(\1); ?'.'>',
6565
'/Fixed PECL bug #([0-9]+)/' => '<?php peclbugfix(\1); ?'.'>',
6666
'/Implemented FR #([0-9]+)/' => '<?php implemented(\1); ?'.'>',
67-
'/GitHub PR #([0-9]+)/' => '<?php githubissuel(\'php/php-src\',\1); ?'.'>',
68-
'/GH-([0-9]+)/' => '<?php githubissuel(\'php/php-src\',\1); ?'.'>',
67+
'/GitHub PR #([0-9]+)/' => '<?php githubissuel(\'php/php-src\', \1); ?'.'>',
68+
'/GH-([0-9]+)/' => '<?php githubissuel(\'php/php-src\', \1); ?'.'>',
6969
];
7070

7171
foreach($entries as $module => $items) {

0 commit comments

Comments
 (0)