mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-10 16:08:34 +01:00
Fixbug
This commit is contained in:
parent
d1c003d999
commit
6f562ce0b4
@ -2345,6 +2345,7 @@
|
|||||||
{
|
{
|
||||||
$this->index();
|
$this->index();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Fetch participants
|
// Fetch participants
|
||||||
if( get_var("matrix", array("GET", "POST")) == 1 )
|
if( get_var("matrix", array("GET", "POST")) == 1 )
|
||||||
@ -2355,7 +2356,13 @@
|
|||||||
// fetch participatns from get and post var
|
// fetch participatns from get and post var
|
||||||
$participants = get_var("participants", array("GET", "POST"));
|
$participants = get_var("participants", array("GET", "POST"));
|
||||||
// Defined - into session - who participates
|
// Defined - into session - who participates
|
||||||
$GLOBALS['phpgw']->session->appsession("participants_matrix", "calendar", implode(";", $participants));
|
$GLOBALS['phpgw']->session->appsession("participants_matrix", "calendar", @implode(";", $participants));
|
||||||
|
}
|
||||||
|
|
||||||
|
// No type ... return to the select page
|
||||||
|
if (!get_var("matrixtype", array("GET", "POST")) OR !$participants )
|
||||||
|
{
|
||||||
|
header('Location: ?menuaction=calendar.uicalendar.matrixselect');
|
||||||
}
|
}
|
||||||
|
|
||||||
$date["year"] = get_var("year", array("GET", "POST"));
|
$date["year"] = get_var("year", array("GET", "POST"));
|
||||||
|
Loading…
Reference in New Issue
Block a user