use mail helpers for shift delete and shift change

This commit is contained in:
Felix Favre 2014-12-07 19:44:59 +01:00
parent 8f918422f4
commit 07b9de84c5
1 changed files with 8 additions and 1 deletions

View File

@ -11,6 +11,9 @@ function Shift_delete_by_psid($shift_psid) {
* Delete a shift.
*/
function Shift_delete($shift_id) {
mail_shift_delete(Shift($shift_id));
return sql_query("DELETE FROM `Shifts` WHERE `SID`=" . sql_escape($shift_id));
}
@ -18,6 +21,10 @@ function Shift_delete($shift_id) {
* Update a shift.
*/
function Shift_update($shift) {
$old_shift = Shift($shift['SID']);
mail_shift_change(Shift($shift['SID']), $shift);
return sql_query("UPDATE `Shifts` SET
`start`=" . sql_escape($shift['start']) . ",
`end`=" . sql_escape($shift['end']) . ",