mirror of
https://github.com/processwire/processwire.git
synced 2025-08-15 11:14:12 +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 = $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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user