[dev] Re: WG: 2 weitergeleitete Nachrichten
Nuno Loureiro
nuno at co.sapo.pt
Thu Jul 3 03:38:25 PDT 2003
I guess I forgot to include the first patch from Walter Tasin, that does
some cleanup.
Here it is.
On Thu, 2003-07-03 at 00:07, Michael M Slusarz wrote:
> Quoting Nuno Loureiro <nuno at co.sapo.pt>:
> | Here's a patch that includes both patches from Walter Tasin
> | <tasin at fhm.edu> for fetchmail.
>
> Committed - and I removed a boatload of duplicate code in the patch, so
> someone should check to make sure this didn't screw anything up.
I'm having some problems! Will send a patch later! Anyway I don't know
why the hell that code block was duplicated. I think originally there
was a reason for having two different blocks for POP3 and IMAP, but
probably it became useless and forgot to clean it up.
Thanks.
Nuno Loureiro
--
Nuno Loureiro <nuno at co.sapo.pt>
PTM.com - http://www.sapo.pt/
PGP fingerprint = 8A32 5174 E80C 2D40 9075 405E C107 6592 054A 4D05
-------------- next part --------------
--- imp/templates/fetchmail/fetchmail.inc Tue Jun 17 09:54:01 2003
+++ imp/templates/fetchmail/fetchmail.inc Mon Jun 23 14:25:13 2003
@@ -46,7 +46,7 @@
<?php echo _("Local Mailbox:") ?><br />
<select name="lmailbox">
- <?php echo IMP::flistSelect('', false, '', !empty($to_edit) ? $account->getValue('lmailbox', $to_edit) : '') ?>
+ <?php echo IMP::flistSelect('', false, array(), !empty($to_edit) ? $account->getValue('lmailbox', $to_edit) : '') ?>
</select>
<?php } ?><br />
--- imp/templates/fetchmail/fetchmail_js.inc Fri Jan 31 21:16:46 2003
+++ imp/templates/fetchmail/fetchmail_js.inc Mon Jun 23 14:24:39 2003
@@ -99,7 +99,7 @@
document.accounts.del.checked = false;
document.accounts.markseen.checked = false;
document.accounts.loginfetch.checked = false;
- for (var i = 0; i < document.accounts.acctcolor.length; i--) {
+ for (var i = 0; i < document.accounts.acctcolor.length; i++) {
document.accounts.acctcolor[i].checked = false;
}
cancelSubmit = true;
--- imp/templates/fetchmail/manage.inc Wed Jun 18 00:11:32 2003
+++ imp/templates/fetchmail/manage.inc Mon Jun 23 14:25:50 2003
@@ -46,7 +46,7 @@
<?php echo _("Local Mailbox:") ?><br />
<select name="lmailbox">
- <?php echo IMP::flistSelect('', false, false, !empty($to_edit) ? $account->getValue('lmailbox', $to_edit) : '') ?>
+ <?php echo IMP::flistSelect('', false, array(), !empty($to_edit) ? $account->getValue('lmailbox', $to_edit) : '') ?>
</select>
<?php } ?><br />
More information about the dev
mailing list