From 505429e517175c6a65a65b212f3e86492bf58b0e Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Thu, 21 Mar 2019 11:12:01 -0400 Subject: [PATCH] Fix issue processwire/processwire-issues#832 --- .../Process/ProcessPageLister/ProcessPageLister.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wire/modules/Process/ProcessPageLister/ProcessPageLister.module b/wire/modules/Process/ProcessPageLister/ProcessPageLister.module index 535cd3f2..3be2134b 100644 --- a/wire/modules/Process/ProcessPageLister/ProcessPageLister.module +++ b/wire/modules/Process/ProcessPageLister/ProcessPageLister.module @@ -322,6 +322,8 @@ class ProcessPageLister extends Process implements ConfigurableModule { $columns = $this->sessionGet('columns'); if($columns) $this->columns = $columns; $ajax = $this->wire('config')->ajax; + + if(count($_POST)) $this->processInput(); if(!$this->template) { $selector = $this->initSelector; @@ -340,8 +342,6 @@ class ProcessPageLister extends Process implements ConfigurableModule { if(is_array($knownTotal)) $this->knownTotal = $knownTotal; } - if(count($_POST)) $this->processInput(); - parent::init(); }