Fixes unicode changelog tags (#35905)

This commit is contained in:
Jordan Brown
2018-02-24 00:03:46 -05:00
committed by ShizCalev
parent ac9ec9a036
commit 0eff6e60b0

View File

@@ -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, " ");