From: naoki i. <am...@us...> - 2006-10-23 14:05:29
|
Update of /cvsroot/popfile/engine/POPFile In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29448/POPFile Modified Files: Tag: b0_22_2 Configuration.pm Log Message: Following Japanese support: - Performance update for convert_encoding. - Fix the problem with HTML entity. - Clear the character set per mail to avoid using the wrong charsets. - Fix the problem that 'uninitialized value' warnings occur on Japanese environment. Index: Configuration.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Configuration.pm,v retrieving revision 1.51.4.2 retrieving revision 1.51.4.3 diff -C2 -d -r1.51.4.2 -r1.51.4.3 *** Configuration.pm 7 Feb 2006 08:38:53 -0000 1.51.4.2 --- Configuration.pm 23 Oct 2006 14:05:20 -0000 1.51.4.3 *************** *** 662,666 **** } ! return $self->{configuration_parameters__}{$name}{value}; } --- 662,672 ---- } ! # If $self->{configuration_parameters__}{$name} is undefined, simply ! # return undef to avoid defining $self->{configuration_parameters__}{$name}. ! if ( defined($self->{configuration_parameters__}{$name}) ) { ! return $self->{configuration_parameters__}{$name}{value}; ! } else { ! return undef; ! } } |