File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
lib/internal/Magento/Framework/View Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ public function renderNonCachedElement($name)
517
517
} elseif ($ this ->isBlock ($ name )) {
518
518
$ result = $ this ->_renderBlock ($ name );
519
519
} else {
520
- $ result = $ this ->_renderContainer ($ name );
520
+ $ result = $ this ->_renderContainer ($ name, false );
521
521
}
522
522
} catch (\Exception $ e ) {
523
523
if ($ this ->appState ->getMode () === AppState::MODE_DEVELOPER ) {
@@ -559,14 +559,15 @@ protected function _renderUiComponent($name)
559
559
* Gets HTML of container element
560
560
*
561
561
* @param string $name
562
+ * @param bool $useCache
562
563
* @return string
563
564
*/
564
- protected function _renderContainer ($ name )
565
+ protected function _renderContainer ($ name, $ useCache = true )
565
566
{
566
567
$ html = '' ;
567
568
$ children = $ this ->getChildNames ($ name );
568
569
foreach ($ children as $ child ) {
569
- $ html .= $ this ->renderElement ($ child );
570
+ $ html .= $ this ->renderElement ($ child, $ useCache );
570
571
}
571
572
if ($ html == '' || !$ this ->structure ->getAttribute ($ name , Element::CONTAINER_OPT_HTML_TAG )) {
572
573
return $ html ;
You can’t perform that action at this time.
0 commit comments