From 090eac7fbfd2a00ce8bd846daff2e5001a5e68c7 Mon Sep 17 00:00:00 2001 From: Torsten Schulz Date: Fri, 16 Jun 2023 16:01:51 +0200 Subject: [PATCH] Mailbox update --- include/emailinbox.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/emailinbox.php b/include/emailinbox.php index 3878848..aa1d999 100644 --- a/include/emailinbox.php +++ b/include/emailinbox.php @@ -71,7 +71,9 @@ class Emailinbox extends Renderer { $this->connectToImap(); $folders = $this->mbox->getMailboxes("*"); $folderItems = []; + var_dump($this->folder); foreach ($folders as $folder) { + var_dump($folder, $this->folder === $folder); $item = '
  • folder ? ' style="active-folder"' : '') . '>' . utf8_encode($folder['shortpath']) . '
  • '; $folderItems[] = $item; }