mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
apps/calendar: check for unset variable
Signed-off-by: Florian Pritz <bluewind@xinu.at>
This commit is contained in:
parent
152fc7d94d
commit
842ce24d2b
1 changed files with 1 additions and 1 deletions
|
|
@ -426,7 +426,7 @@ class OC_Calendar_Object{
|
|||
{
|
||||
$title = $request["title"];
|
||||
$location = $request["location"];
|
||||
$categories = $request["categories"];
|
||||
$categories = isset($request["categories"]) ? $request["categories"] : null;
|
||||
$allday = isset($request["allday"]);
|
||||
$from = $request["from"];
|
||||
$fromtime = $request["fromtime"];
|
||||
|
|
|
|||
Loading…
Reference in a new issue