mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-03-07 12:47:41 +01:00
Fix filtri su ricerche numeriche
This commit is contained in:
parent
ad68eec587
commit
4f7f6114e9
2
ajax.php
2
ajax.php
@ -55,7 +55,7 @@ switch (filter('op')) {
|
||||
// Imposta un valore ad una sessione
|
||||
case 'session_set':
|
||||
$array = explode(',', get('session'));
|
||||
$value = get('value');
|
||||
$value = get('value', true);
|
||||
$clear = get('clear');
|
||||
|
||||
if ($clear == 1 || $value == '') {
|
||||
|
@ -22,7 +22,7 @@ include_once __DIR__.'/core.php';
|
||||
use Util\Query;
|
||||
|
||||
// Informazioni fondamentali
|
||||
$columns = (array) filter('columns');
|
||||
$columns = (array) filter('columns', null, true);
|
||||
$order = filter('order') ? filter('order')[0] : [];
|
||||
$draw_numer = intval(filter('draw'));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user