|
From: <jud...@us...> - 2006-07-19 21:27:31
|
Revision: 313 Author: judith_osdl Date: 2006-07-19 14:27:29 -0700 (Wed, 19 Jul 2006) ViewCVS: http://svn.sourceforge.net/stp/?rev=313&view=rev Log Message: ----------- Check for yes or auto send_results options. Modified Paths: -------------- trunk/Test-Sut/lib/Test/Sut/Upload/Email.pm Modified: trunk/Test-Sut/lib/Test/Sut/Upload/Email.pm =================================================================== --- trunk/Test-Sut/lib/Test/Sut/Upload/Email.pm 2006-07-19 21:18:05 UTC (rev 312) +++ trunk/Test-Sut/lib/Test/Sut/Upload/Email.pm 2006-07-19 21:27:29 UTC (rev 313) @@ -57,7 +57,7 @@ } my $send_flag = $self->getConfigParam( "email_results" ); - if ( $send_flag =~ m/yes/i ){ + if ( $send_flag =~ m/yes|auto/i ){ $self->send_results(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |