Ignore:
Timestamp:
2010-09-28T18:35:06+13:00 (14 years ago)
Author:
ak19
Message:
  1. Undoing commit of 22934 where decode_commas was called on stem and fold comma separated list: previously separated due to url-encoding of commas. Now that the problem has been fixed at the source, the decode_commas hack is no longer necessary. 2. Commas in stem and fold are no longer url-encoded because the multiple_value field of the continuously-reused struct arg_ainfo is always set back to the default false after ever being set to true. So it no longer subtly stays at true to affect Greenstone functioning in unforeseen ways (such as suddenly and unnecessarily URL-encoding commas where this is not wanted).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/runtime-src/src/recpt/dynamicclassifieraction.cpp

    r19297 r22984  
    3939  arg_ainfo.longname = "dynamic classifier ID";
    4040  arg_ainfo.multiplechar = true;
     41  arg_ainfo.multiplevalue = false;
    4142  arg_ainfo.defaultstatus = cgiarginfo::weak;
    4243  arg_ainfo.argdefault = "";
     
    4748  arg_ainfo.longname = "dynamic classifier node";
    4849  arg_ainfo.multiplechar = true;
     50  arg_ainfo.multiplevalue = false;
    4951  arg_ainfo.defaultstatus = cgiarginfo::weak;
    5052  arg_ainfo.argdefault = "";
Note: See TracChangeset for help on using the changeset viewer.