diff options
author | David Carter <dpc22@cam.ac.uk> | 2013-05-29 09:31:42 +0100 |
---|---|---|
committer | David Carter <dpc22@cam.ac.uk> | 2013-05-29 09:31:42 +0100 |
commit | 149f8a00cc51c87fef3afe2fbb51822a3582c583 (patch) | |
tree | 90ea2d4694e06f7290a473bf276a45d4b25923cc /program/include/rcmail.php | |
parent | 52deb18d9646116114f9649c87ffc4f0bc378db1 (diff) |
Change show_actual_foldernames to be show_real_foldernames.
Change requested by alec@alec.pl.
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 76edfab0b..a0bc03633 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -1326,7 +1326,7 @@ class rcmail extends rcube $msgcounts = $this->storage->get_cache('messagecount'); $collapsed = $this->config->get('collapsed_folders'); - if ($this->config->get('show_actual_foldernames')) + if ($this->config->get('show_real_foldernames')) $realnames = true; $out = ''; @@ -1494,7 +1494,7 @@ class rcmail extends rcube if ($count > 1) { for ($i = 0; $i < $count; $i++) { $folder = implode($delimiter, array_slice($path, 0, -$i)); - if (!$this->config->get('show_actual_foldernames') && + if (!$this->config->get('show_real_foldernames') && ($folder_class = $this->folder_classname($folder))) { $name = implode($delimiter, array_slice($path, $count - $i)); return $this->gettext($folder_class) . $delimiter . rcube_charset::convert($name, 'UTF7-IMAP'); @@ -1503,7 +1503,7 @@ class rcmail extends rcube } } - if (!$this->config->get('show_actual_foldernames') && + if (!$this->config->get('show_real_foldernames') && ($folder_class = $this->folder_classname($name))) { return $this->gettext($folder_class); } |