|
From: <jgr...@us...> - 2003-10-02 14:07:57
|
Update of /cvsroot/popfile/engine/UI
In directory sc8-pr-cvs1:/tmp/cvs-serv14399/UI
Modified Files:
HTML.pm
Log Message:
Fix bug that Junya introduced where the subject was the sender
Index: HTML.pm
===================================================================
RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v
retrieving revision 1.208
retrieving revision 1.209
diff -C2 -d -r1.208 -r1.209
*** HTML.pm 1 Oct 2003 14:34:28 -0000 1.208
--- HTML.pm 2 Oct 2003 14:07:52 -0000 1.209
***************
*** 2673,2677 ****
$from = $self->{classifier__}->{parser__}->decode_string( $from, $self->config_( 'language' ) );
! $subject = $self->{classifier__}->{parser__}->decode_string( $from, $self->config_( 'language' ) );
my ( $short_from, $short_subject ) = ( $from, $subject );
--- 2673,2677 ----
$from = $self->{classifier__}->{parser__}->decode_string( $from, $self->config_( 'language' ) );
! $subject = $self->{classifier__}->{parser__}->decode_string( $subject, $self->config_( 'language' ) );
my ( $short_from, $short_subject ) = ( $from, $subject );
|