diff --cc core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php index 8b6ddc9,da21752..0000000 --- a/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php @@@ -92,13 -89,13 +91,13 @@@ class Full extends SqlBase 3 => $this->options['tags']['next'], 4 => $this->options['tags']['last'], ); - $output = theme($pager_theme, array( - 'tags' => $tags, - 'element' => $this->options['id'], - 'parameters' => $input, - 'quantity' => $this->options['quantity'], - )); - return $output; + return array( - '#theme' => $this->view->buildThemeFunctions('pager'), ++ '#theme' => $this->themeFunctions(); + '#tags' => $tags, + '#element' => $this->options['id'], + '#parameters' => $input, + '#quantity' => $this->options['quantity'], + ); }