Commit a8f810ec authored by mku's avatar mku

ZP-197 #comment Warnings on free-busy publish #time 15m

git-svn-id: https://z-push.org/svn/z-push/trunk@1449 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent 40ddd619
......@@ -334,13 +334,13 @@ class FreeBusyPublish {
$ts["type"] = 0;
$ts["time"] = $item[$this->proptags["startdate"]];
$ts["subject"] = $item[PR_SUBJECT];
$ts["status"] = $item[$this->proptags["busystatus"]];
$ts["status"] = (isset($item[$this->proptags["busystatus"]])) ? $item[$this->proptags["busystatus"]] : 0; //ZP-197
$timestamps[] = $ts;
$ts["type"] = 1;
$ts["time"] = $item[$this->proptags["duedate"]];
$ts["subject"] = $item[PR_SUBJECT];
$ts["status"] = $item[$this->proptags["busystatus"]];
$ts["status"] = (isset($item[$this->proptags["busystatus"]])) ? $item[$this->proptags["busystatus"]] : 0; //ZP-197
$timestamps[] = $ts;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment