From: <buc...@us...> - 2011-01-24 15:12:09
|
Revision: 206 http://devmon.svn.sourceforge.net/devmon/?rev=206&view=rev Author: buchanmilne Date: 2011-01-24 15:12:03 +0000 (Mon, 24 Jan 2011) Log Message: ----------- Fix parsing of WORST operator (Wim Nelis) Modified Paths: -------------- trunk/modules/dm_templates.pm Modified: trunk/modules/dm_templates.pm =================================================================== --- trunk/modules/dm_templates.pm 2011-01-24 15:01:29 UTC (rev 205) +++ trunk/modules/dm_templates.pm 2011-01-24 15:12:03 UTC (rev 206) @@ -654,7 +654,7 @@ }; $func_type eq 'worst' and do { - $temp =~ s/^\s*\{\s*\S+?\s*\}|\s*,\s*//g; + $temp =~ s/\s*\{\s*\S+?\s*\}|\s*,\s*//g; do_log("WORST transform uses only comma-delimited oids at " . "$trans_file, line $l_num", 0) and next LINE if $temp ne ''; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |