diff --git a/app/Item.php b/app/Item.php index da141c34..a59854ed 100644 --- a/app/Item.php +++ b/app/Item.php @@ -75,14 +75,16 @@ class Item extends Model $config = null; } else { $store = false; - //die(print_r($config)); + //die(var_dump($config)); foreach($config as $key => $check) { if($key == 'type') continue; - if(!empty($check)) { + if($key == 'dataonly') continue; + if(!empty($check) && $check != '0') { $store = true; break; } } + //die(var_dump($store)) $config['enabled'] = ($store) ? true : false; $config = json_encode($config);