|
|
|
@ -57,12 +57,15 @@ function user_myshifts() {
|
|
|
|
|
|
|
|
|
|
$comment = strip_request_item_nl('comment');
|
|
|
|
|
$user_source = User($shift['UID']);
|
|
|
|
|
sql_query("UPDATE `ShiftEntry` SET
|
|
|
|
|
`Comment`='" . sql_escape($comment) . "',
|
|
|
|
|
`freeloaded`=" . sql_escape($freeloaded ? 1 : 0) . ",
|
|
|
|
|
`freeload_comment`='" . sql_escape($freeload_comment) . "'
|
|
|
|
|
WHERE `id`=" . sql_escape($id) . "
|
|
|
|
|
LIMIT 1");
|
|
|
|
|
$result = ShiftEntry_update(array(
|
|
|
|
|
'id' => $id,
|
|
|
|
|
'Comment' => $comment,
|
|
|
|
|
'freeloaded' => $freeloaded,
|
|
|
|
|
'freeload_comment' => $freeload_comment
|
|
|
|
|
));
|
|
|
|
|
if ($result === false)
|
|
|
|
|
engelsystem_error('Unable to update shift entr.');
|
|
|
|
|
|
|
|
|
|
engelsystem_log("Updated " . User_Nick_render($user_source) . "'s shift " . $shift['name'] . " from " . date("y-m-d H:i", $shift['start']) . " to " . date("y-m-d H:i", $shift['end']) . " with comment " . $comment);
|
|
|
|
|
success(_("Shift saved."));
|
|
|
|
|
redirect(page_link_to('users') . '&action=view&user_id=' . $shifts_user['UID']);
|
|
|
|
|