fix creation of shift types
This commit is contained in:
parent
9af229094d
commit
0cb28c05b1
|
@ -35,7 +35,7 @@ function ShiftType_update($shifttype_id, $name, $angeltype_id, $description) {
|
||||||
function ShiftType_create($name, $angeltype_id, $description) {
|
function ShiftType_create($name, $angeltype_id, $description) {
|
||||||
$result = sql_query("INSERT INTO `ShiftTypes` SET
|
$result = sql_query("INSERT INTO `ShiftTypes` SET
|
||||||
`name`='" . sql_escape($name) . "',
|
`name`='" . sql_escape($name) . "',
|
||||||
`angeltype_id`='" . sql_null($angeltype_id) . "',
|
`angeltype_id`=" . sql_null($angeltype_id) . ",
|
||||||
`description`='" . sql_escape($description) . "'");
|
`description`='" . sql_escape($description) . "'");
|
||||||
if ($result === false)
|
if ($result === false)
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue