We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a418792 commit e7483cbCopy full SHA for e7483cb
comment/engine/plug/page.php
@@ -12,14 +12,14 @@
12
continue;
13
} else {
14
$parent = false;
15
- $soh = defined("YAML\\SOH") ? YAML\SOH : '---';
16
- $eot = defined("YAML\\EOT") ? YAML\EOT : '...';
+ $start = defined("YAML\\SOH") ? YAML\SOH : '---';
+ $end = defined("YAML\\EOT") ? YAML\EOT : '...';
17
foreach (stream($k) as $kk => $vv) {
18
- if (0 === $kk && $soh . "\n" !== $vv) {
+ if (0 === $kk && $start . "\n" !== $vv) {
19
// No header marker means no property at all
20
break;
21
}
22
- if ($eot . "\n" === $vv) {
+ if ($end . "\n" === $vv) {
23
// End header marker means no `parent` property found
24
25
0 commit comments