Update of /cvsroot/popfile/engine/Services/IMAP
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12785/Services/IMAP
Modified Files:
Client.pm
Log Message:
Make the tests of the UI a bit more nitpicky.
Fix minor bugs in the IMAP modules.
Index: Client.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Services/IMAP/Client.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Client.pm 1 Dec 2007 22:37:36 -0000 1.3
--- Client.pm 3 Dec 2007 08:16:49 -0000 1.4
***************
*** 955,963 ****
# Check whether the old value is still valid
! if ( $new_val != $old_val ) {
! return;
}
else {
! return 1;
}
}
--- 955,963 ----
# Check whether the old value is still valid
! if ( defined $old_val && $old_val ne '' && $new_val == $old_val ) {
! return 1;
}
else {
! return;
}
}
|