mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
ENH Improve type safety to support refactored template layer
This commit is contained in:
parent
bd48b04731
commit
cde12faa81
@ -1454,7 +1454,7 @@ class SiteTree extends DataObject implements PermissionProvider, i18nEntityProvi
|
||||
|
||||
$tags['title'] = [
|
||||
'tag' => 'title',
|
||||
'content' => $this->obj('Title')->forTemplate()
|
||||
'content' => $this->obj('Title')?->forTemplate()
|
||||
];
|
||||
|
||||
$generator = $this->getGenerator();
|
||||
@ -1601,7 +1601,7 @@ class SiteTree extends DataObject implements PermissionProvider, i18nEntityProvi
|
||||
|
||||
$tagString = implode("\n", $tags);
|
||||
if ($this->ExtraMeta) {
|
||||
$tagString .= $this->obj('ExtraMeta')->forTemplate();
|
||||
$tagString .= $this->obj('ExtraMeta')?->forTemplate();
|
||||
}
|
||||
|
||||
$this->extend('updateMetaTags', $tagString);
|
||||
|
Loading…
Reference in New Issue
Block a user