From 0d98bba5d1b4b67f0a6a6b2561cd6a5a61c3c26b Mon Sep 17 00:00:00 2001 From: Torsten Schulz Date: Fri, 16 Jun 2023 16:02:37 +0200 Subject: [PATCH] Mailbox update --- include/emailinbox.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);