[Bps-public-commit] r19084 - in Net-IMAP-Server: lib/Net/IMAP/Server
alexmv at bestpractical.com
alexmv at bestpractical.com
Tue Apr 7 13:49:07 EDT 2009
Author: alexmv
Date: Tue Apr 7 13:49:07 2009
New Revision: 19084
Modified:
Net-IMAP-Server/ (props changed)
Net-IMAP-Server/lib/Net/IMAP/Server/Mailbox.pm
Log:
r43874 at kohr-ah: chmrr | 2009-04-07 13:49:03 -0400
That should be a slice, not a single element
Modified: Net-IMAP-Server/lib/Net/IMAP/Server/Mailbox.pm
==============================================================================
--- Net-IMAP-Server/lib/Net/IMAP/Server/Mailbox.pm (original)
+++ Net-IMAP-Server/lib/Net/IMAP/Server/Mailbox.pm Tue Apr 7 13:49:07 2009
@@ -581,7 +581,7 @@
@found{ $self->_uids_in_range( $1, $2 ) } = ();
} elsif ( /^(\d+):\*$/ or /^\*:(\d+)$/ ) {
$found{$last}++;
- $found{ $self->_uids_in_range( $1, $last ) } = ();
+ @found{ $self->_uids_in_range( $1, $last ) } = ();
} elsif (/^(\d+)$/) {
$found{$_}++ if defined $uids->{$1};
} elsif (/^\*$/) {
More information about the Bps-public-commit
mailing list