From 94d8fb5a42899377804e42a3084845d034563167 Mon Sep 17 00:00:00 2001
From: David Carter <dpc22@cam.ac.uk>
Date: Sun, 16 Nov 2014 08:41:28 -0500
Subject: [PATCH] The following:   program/steps/mail/compose.inc :: rcmail_store_target_selection()   program/steps/settings/edit_folder.inc :: rcmail_folder_form()

---
 program/include/rcmail.php |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index 2f595de..350b54f 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -1342,7 +1342,8 @@
      */
     public function folder_selector($p = array())
     {
-        $p += array('maxlength' => 100, 'realnames' => false, 'is_escaped' => true);
+        $realnames = $this->config->get('show_real_foldernames');
+        $p += array('maxlength' => 100, 'realnames' => $realnames, 'is_escaped' => true);
         $a_mailboxes = array();
         $storage = $this->get_storage();
 

--
Gitblit v1.9.1