Fix constant name
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 12 Nov 2009 21:11:24 +0000 (14:11 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 12 Nov 2009 22:33:20 +0000 (15:33 -0700)
imp/templates/prefs/trashselect.inc

index 2f3b35b..b048561 100644 (file)
@@ -4,7 +4,7 @@
 <select id="trash" name="trash">
 <?php
     $use_vtrash = $prefs->getValue('use_vtrash');
-    echo '<option value="' . IMP_PREF_NO_FOLDER . '">' . _("None") . '</option>' .
+    echo '<option value="' . IMP::PREF_NO_FOLDER . '">' . _("None") . '</option>' .
     '<option value="' . IMP::PREF_VTRASH . '"' . (($use_vtrash) ? ' selected="selected"' : '') . '>' . _("Use Virtual Trash") . '</option>' .
     IMP::flistSelect(array('heading' => _("Create a new trash folder"), 'filter' => array('INBOX'), 'selected' => ($use_vtrash ? null : IMP::folderPref($prefs->getValue('trash_folder'), true)), 'new_folder' => true));
 ?>