Fixed warning

This commit is contained in:
Christian Mollekopf 2021-01-27 10:19:57 +01:00
parent b4b3a48893
commit a313f260a2

View file

@ -1682,7 +1682,7 @@ class tasklist_kolab_driver extends tasklist_driver
if (strlen($folder_name)) { if (strlen($folder_name)) {
$path_imap = explode($delim, $folder_name); $path_imap = explode($delim, $folder_name);
array_pop($path_imap); // pop off name part array_pop($path_imap); // pop off name part
$path_imap = implode($path_imap, $delim); $path_imap = implode($delim, $path_imap);
$options = $storage->folder_info($folder_name); $options = $storage->folder_info($folder_name);
} }