mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-23 05:41:02 +01:00
Deleting of holidays now works.
This commit is contained in:
parent
e65822c4bc
commit
bda51d1136
@ -72,6 +72,12 @@ class calendar_holiday
|
||||
$this->db->query($sql,__LINE__,__FILE__);
|
||||
}
|
||||
|
||||
function delete_holiday($id)
|
||||
{
|
||||
$sql = 'DELETE FROM phpgw_cal_holidays WHERE hol_id='.$id;
|
||||
$this->db->query($sql,__LINE__,__FILE__);
|
||||
}
|
||||
|
||||
function load_from_network($locale)
|
||||
{
|
||||
global $phpgw_info, $HTTP_HOST, $SERVER_PORT;
|
||||
|
Loading…
Reference in New Issue
Block a user