Fix admin edit_access wrong enabled type, other fixes

General notice fixes as much as possible
This commit is contained in:
Clemens Schwaighofer
2018-11-07 13:32:58 +09:00
parent 433b21ab6f
commit 9d918f3b43
10 changed files with 457 additions and 108 deletions

View File

@@ -409,6 +409,8 @@ class ArrayIO extends \CoreLibs\DB\IO
$_value = $this->table_array[$column]["value"];
}
$q_data .= $_value;
} elseif ($this->table_array[$column]['bool']) {
$q_data .= "'".$this->dbBoolean($this->table_array[$column]["value"], true)."'";
} elseif ($this->table_array[$column]["interval"]) {
// for interval we check if no value, then we set null
if (!$this->table_array[$column]["value"]) {