Changeset 232


Ignore:
Timestamp:
1999-04-09T09:50:32+12:00 (25 years ago)
Author:
sjboddie
Message:

Minor changes to get classify.pm to pass options to each classifier
plugin correctly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/classify.pm

    r214 r232  
    3030    # create the classify object
    3131    my ($classobj);
    32     eval ("\$classobj = new $classname()");
     32    map { $_ = "\"$_\""; } @$classinfo;
     33    my $options = join (",", @$classinfo);
     34    eval ("\$classobj = new $classname($options)");
    3335    die "$@" if $@;
    3436
Note: See TracChangeset for help on using the changeset viewer.