From 1d73c26c0b7588ca0ec7dacb362d14857c402705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 12 Jul 2022 14:46:56 +0200 Subject: [PATCH] Fix: Avoid generating code without space between comma and function argument Closes GH-650. --- bin/news2html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/news2html b/bin/news2html index 0b72e8824..97d20a75f 100755 --- a/bin/news2html +++ b/bin/news2html @@ -64,8 +64,8 @@ $bug_map = [ '/Fixed bug #([0-9]+)/' => '', '/Fixed PECL bug #([0-9]+)/' => '', '/Implemented FR #([0-9]+)/' => '', - '/GitHub PR #([0-9]+)/' => '', - '/GH-([0-9]+)/' => '', + '/GitHub PR #([0-9]+)/' => '', + '/GH-([0-9]+)/' => '', ]; foreach($entries as $module => $items) {