mirror of
https://github.com/processwire/processwire.git
synced 2025-08-15 11:14:12 +02:00
Bump version to 3.0.137
This commit is contained in:
@@ -44,7 +44,7 @@ class ProcessWire extends Wire {
|
|||||||
* Reversion revision number
|
* Reversion revision number
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
const versionRevision = 136;
|
const versionRevision = 137;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Version suffix string (when applicable)
|
* Version suffix string (when applicable)
|
||||||
|
@@ -609,7 +609,7 @@ class ProcessPageLister extends Process implements ConfigurableModule {
|
|||||||
|
|
||||||
if($this->input->post('columns') !== null && !in_array('disableColumns', $this->toggles)) {
|
if($this->input->post('columns') !== null && !in_array('disableColumns', $this->toggles)) {
|
||||||
$columns = array();
|
$columns = array();
|
||||||
foreach($this->input->post('columns') as $name) {
|
foreach($this->input->post->array('columns') as $name) {
|
||||||
$name = $this->wire('sanitizer')->name($name);
|
$name = $this->wire('sanitizer')->name($name);
|
||||||
$columns[] = $name;
|
$columns[] = $name;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user