From 5776be9c1eb97e38fd98105acc84e3e41bb02ee2 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 24 Feb 2018 06:11:09 -0600 Subject: [PATCH] [MIRROR] Fixes unicode changelog tags (#5679) * Fixes unicode changelog tags (#35905) * Fixes unicode changelog tags --- tools/WebhookProcessor/github_webhook_processor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/WebhookProcessor/github_webhook_processor.php b/tools/WebhookProcessor/github_webhook_processor.php index b7143f80fb..6a2bbc228f 100644 --- a/tools/WebhookProcessor/github_webhook_processor.php +++ b/tools/WebhookProcessor/github_webhook_processor.php @@ -597,7 +597,7 @@ function checkchangelog($payload, $compile = true) { $foundcltag = false; foreach ($body as $line) { $line = trim($line); - if (substr($line,0,4) == ':cl:' || substr($line,0,4) == '🆑') { + if (substr($line,0,4) == ':cl:' || substr($line,0,1) == '🆑') { $incltag = true; $foundcltag = true; $pos = strpos($line, " ");