Skip to content

Commit e7483cb

Browse files
Update
1 parent a418792 commit e7483cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

comment/engine/plug/page.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
continue;
1313
} else {
1414
$parent = false;
15-
$soh = defined("YAML\\SOH") ? YAML\SOH : '---';
16-
$eot = defined("YAML\\EOT") ? YAML\EOT : '...';
15+
$start = defined("YAML\\SOH") ? YAML\SOH : '---';
16+
$end = defined("YAML\\EOT") ? YAML\EOT : '...';
1717
foreach (stream($k) as $kk => $vv) {
18-
if (0 === $kk && $soh . "\n" !== $vv) {
18+
if (0 === $kk && $start . "\n" !== $vv) {
1919
// No header marker means no property at all
2020
break;
2121
}
22-
if ($eot . "\n" === $vv) {
22+
if ($end . "\n" === $vv) {
2323
// End header marker means no `parent` property found
2424
break;
2525
}

0 commit comments

Comments
 (0)