diff -u b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php --- b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php +++ b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php @@ -2066,7 +2066,8 @@ */ public function renderMoreLink() { if ($this->isMoreEnabled() && ($this->useMoreAlways() || (!empty($this->view->pager) && $this->view->pager->hasMoreRecords()))) { - // If the user has supplied a custom "More" link path, use that for the URL. + // If the user has supplied a custom "More" link path, use that for the + // URL. if ($this->getOption('link_display') == 'custom_url' && $path = $this->getOption('link_url')) { // Parse the $path. $parts = UrlHelper::parse($path);