1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-15 03:05:26 +02:00

Remove field name indicator from MarkupFieldtype.php output that wasn't intended to stay

This commit is contained in:
Ryan Cramer
2019-08-05 07:53:07 -04:00
parent c2ee22b334
commit 481eb7c545

View File

@@ -119,7 +119,7 @@ class MarkupFieldtype extends WireData implements Module {
$v = $page->getFormatted($property);
$v = $field->type->markupValue($page, $field, $v);
if($this->isLinkablePageProperty($page, $property)) {
$a[] = "<a href='$page->url'>$property: $v</a>";
$a[] = "<a href='$page->url'>$v</a>";
} else {
$a[] = $v;
}