fix php8 warnings

This commit is contained in:
Frédéric FRANCE 2021-03-16 22:50:14 +01:00 committed by GitHub
parent 22ed95a629
commit ff690861c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1212,7 +1212,7 @@ if (count($listofextcals)) {
// LOW = 0 to 4
// MEDIUM = 5
// HIGH = 6 to 9
if ($icalevent['PRIORITY']) {
if (!empty($icalevent['PRIORITY'])) {
$event->priority = $icalevent['PRIORITY'];
}
@ -1233,7 +1233,7 @@ if (count($listofextcals)) {
// X-MICROSOFT-CDO-BUSYSTATUS:OOF + TRANSP:OPAQUE => Away from the office / off-site
}
if ($icalevent['LOCATION']) {
if (!empty($icalevent['LOCATION'])) {
$event->location = $icalevent['LOCATION'];
}