1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-14 18:55:56 +02:00

Bump version to 3.0.137

This commit is contained in:
Ryan Cramer
2019-08-02 14:25:28 -04:00
parent d6c7273c63
commit 918b894d82
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ class ProcessWire extends Wire {
* Reversion revision number
*
*/
const versionRevision = 136;
const versionRevision = 137;
/**
* Version suffix string (when applicable)

View File

@@ -609,7 +609,7 @@ class ProcessPageLister extends Process implements ConfigurableModule {
if($this->input->post('columns') !== null && !in_array('disableColumns', $this->toggles)) {
$columns = array();
foreach($this->input->post('columns') as $name) {
foreach($this->input->post->array('columns') as $name) {
$name = $this->wire('sanitizer')->name($name);
$columns[] = $name;
}