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(); }