Resolve #3219839 "Arguments not passed 4.0.x"
1 open thread
Merge request reports
Activity
added 7 commits
-
d891f0cf...f2dce76b - 6 commits from branch
project:4.0.x
- a3b44af4 - Issue #3219839 by peter.thorndycraft, Anwaikurn: Arguments not passed to ViewContent->render
-
d891f0cf...f2dce76b - 6 commits from branch
146 147 } 147 148 148 // Return empty if the view is empty. 149 $view_results = views_get_view_result($options['vid'], $options['display']); 150 if (!$view_results && !empty($options['vid']) && !empty($options['display'])) { 151 // If the initial view is empty, check the attachments. 152 $view = Views::getView($options['vid']); 153 $view->setDisplay($options['display']); 154 $display = $view->getDisplay(); 155 $attachments = $display->getAttachedDisplays(); 149 // Execute view to get any possible custom alter changes in output 150 // and checks the result with all these changes before rendering. 151 $this->executeView($view, $options['display'], $args); 156 152 157 // If there are attachments, check if they are empty. 153 // Get the current display object and check if it is empty and doesn't have any additional handlers. changed this line in version 4 of the diff
Please register or sign in to reply