Skip to content

Commit efd58e3

Browse files
Fixed set template syntax in block file
1 parent 02e144c commit efd58e3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content/Uploader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Uploader extends \Magento\Backend\Block\Media\Uploader
1919
*
2020
* @var string
2121
*/
22-
protected $_template = 'browser/content/uploader.phtml';
22+
protected $_template = 'Magento_Theme::browser/content/uploader.phtml';
2323

2424
/**
2525
* @var \Magento\Theme\Helper\Storage

app/code/Magento/Theme/Block/Html/Breadcrumbs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Breadcrumbs extends \Magento\Framework\View\Element\Template
2121
*
2222
* @var string
2323
*/
24-
protected $_template = 'html/breadcrumbs.phtml';
24+
protected $_template = 'Magento_Theme::html/breadcrumbs.phtml';
2525

2626
/**
2727
* List of available breadcrumb properties

app/code/Magento/Theme/Block/Html/Header.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Header extends \Magento\Framework\View\Element\Template
1919
*
2020
* @var string
2121
*/
22-
protected $_template = 'html/header.phtml';
22+
protected $_template = 'Magento_Theme::html/header.phtml';
2323

2424
/**
2525
* Retrieve welcome text

app/code/Magento/Theme/Block/Html/Header/Logo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Logo extends \Magento\Framework\View\Element\Template
1919
*
2020
* @var string
2121
*/
22-
protected $_template = 'html/header/logo.phtml';
22+
protected $_template = 'Magento_Theme::html/header/logo.phtml';
2323

2424
/**
2525
* @var \Magento\MediaStorage\Helper\File\Storage\Database

0 commit comments

Comments
 (0)