[MIRROR] Fixes unicode changelog tags (#5679)

* Fixes unicode changelog tags (#35905)

* Fixes unicode changelog tags
This commit is contained in:
CitadelStationBot
2018-02-24 06:11:09 -06:00
committed by Poojawa
parent 84abe79303
commit 5776be9c1e

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