Ignore:
Timestamp:
2002-10-25T16:33:34+13:00 (22 years ago)
Author:
kjdon
Message:

actions all use cgi arg long names now, not short names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/action/BrowseAction.java

    r3467 r3491  
    5252    HashMap params = GSXML.extractParams(cgi_paramList);
    5353
    54     String collection = (String)params.get("c");
     54    String collection = (String)params.get("collection");
    5555    if (collection == null || collection.equals("")) {
    5656        return GSHTML.errorPage("classifierbrowse, need to specify a collection!");
     
    8383
    8484    // if there is a cl field in the cgi params, get the classifier info
    85     String node = (String)params.get("cl");
     85    String node = (String)params.get("classifier");
    8686
    8787    if (node==null|| node.equals("")) {
Note: See TracChangeset for help on using the changeset viewer.