--- views_php_plugin_pager.inc.orig 2015-05-13 11:51:58.653665703 -0500 +++ views_php_plugin_pager.inc 2015-05-13 12:02:51.415775345 -0500 @@ -10,7 +10,7 @@ /** * Perform any needed actions just prior to the query executing. */ - public function pre_execute($query) { + public function pre_execute(&$query) { $this->wrapped->pre_execute($query); foreach (array(/*'argument',*/ 'field', 'filter', 'sort', /*'relationship'*/) as $type) { @@ -47,7 +47,7 @@ } } } - $this->update_wrapped_pager(); + //$this->update_wrapped_pager(); $this->php_unwrap(); }