|
From: <ssc...@us...> - 2003-04-26 10:07:54
|
Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv6748
Modified Files:
POP3.pm
Log Message:
fix changing of pop3 separator in UI
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -d -r1.52 -r1.53
*** POP3.pm 26 Apr 2003 09:44:16 -0000 1.52
--- POP3.pm 26 Apr 2003 10:07:51 -0000 1.53
***************
*** 489,493 ****
if ( defined($$form{pop3_separator}) ) {
if ( length($$form{pop3_separator}) == 1 ) {
! $self->config_( 'separator', $$form{separator} );
return '<blockquote>' . sprintf( $$language{Configuration_POP3SepUpdate} . '</blockquote>' , $self->config_( 'separator' ) );
} else {
--- 489,493 ----
if ( defined($$form{pop3_separator}) ) {
if ( length($$form{pop3_separator}) == 1 ) {
! $self->config_( 'separator', $$form{pop3_separator} );
return '<blockquote>' . sprintf( $$language{Configuration_POP3SepUpdate} . '</blockquote>' , $self->config_( 'separator' ) );
} else {
|