浏览代码

changed displayal of folders to move to from unformatted-disp to formatted

teepe 24 年之前
父节点
当前提交
e9e90b180f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      functions/mailbox_display.php

+ 2 - 2
functions/mailbox_display.php

@@ -544,7 +544,7 @@
       for ($i = 0; $i < count($boxes); $i++) {
       for ($i = 0; $i < count($boxes); $i++) {
          if (!in_array("noselect", $boxes[$i]['flags'])) {
          if (!in_array("noselect", $boxes[$i]['flags'])) {
             $box = $boxes[$i]['unformatted'];
             $box = $boxes[$i]['unformatted'];
-            $box2 = str_replace(' ', '&nbsp;', $boxes[$i]['unformatted-disp']);
+            $box2 = str_replace(' ', '&nbsp;', $boxes[$i]['formatted']);
             echo "         <OPTION VALUE=\"$box\">$box2</option>\n";
             echo "         <OPTION VALUE=\"$box\">$box2</option>\n";
          }
          }
       }
       }
@@ -700,4 +700,4 @@
       return substr($subject, 0, $trim_val) . '...';
       return substr($subject, 0, $trim_val) . '...';
    }
    }
 
 
-?>
+?>