diff --git a/include/emailinbox.php b/include/emailinbox.php index aa1d999..6780d37 100644 --- a/include/emailinbox.php +++ b/include/emailinbox.php @@ -73,8 +73,8 @@ class Emailinbox extends Renderer { $folderItems = []; var_dump($this->folder); foreach ($folders as $folder) { - var_dump($folder, $this->folder === $folder); - $item = '
  • folder ? ' style="active-folder"' : '') . '>' . utf8_encode($folder['shortpath']) . '
  • '; + var_dump($folder['shortpath'], $this->folder === $folder['shortpath']); + $item = '
  • folder ? ' style="active-folder"' : '') . '>' . utf8_encode($folder['shortpath']) . '
  • '; $folderItems[] = $item; } $this->content['folders'] = implode('', $folderItems);