mirror of
https://github.com/processwire/processwire.git
synced 2025-08-17 20:11:46 +02:00
Remove field name indicator from MarkupFieldtype.php output that wasn't intended to stay
This commit is contained in:
@@ -119,7 +119,7 @@ class MarkupFieldtype extends WireData implements Module {
|
|||||||
$v = $page->getFormatted($property);
|
$v = $page->getFormatted($property);
|
||||||
$v = $field->type->markupValue($page, $field, $v);
|
$v = $field->type->markupValue($page, $field, $v);
|
||||||
if($this->isLinkablePageProperty($page, $property)) {
|
if($this->isLinkablePageProperty($page, $property)) {
|
||||||
$a[] = "<a href='$page->url'>$property: $v</a>";
|
$a[] = "<a href='$page->url'>$v</a>";
|
||||||
} else {
|
} else {
|
||||||
$a[] = $v;
|
$a[] = $v;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user