Ignore:
Timestamp:
2012-06-05T10:10:21+12:00 (12 years ago)
Author:
sjm84
Message:

Start page is no longer remembered in the session

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/GSParams.java

    r25653 r25735  
    4141    public static final String DOCUMENT_TYPE = "dt";
    4242    public static final String START_PAGE = "startPage";
     43    public static final String S_START_PAGE = "s1.startPage";
    4344    public static final String HREF = "href"; // url. might be an external url, or a relative one that needs translating
    4445    public static final String RELATIVE_LINK = "rl"; // whether the href url is relative to the collection or not.
     
    9192        addParameter(DOCUMENT, true);
    9293        addParameter(DOCUMENT_TYPE, true);
    93         addParameter(START_PAGE, true);
     94        addParameter(START_PAGE, false);
     95        addParameter(S_START_PAGE, false);
    9496        // should the following two just be in doc action??
    9597        addParameter(HREF, false);
Note: See TracChangeset for help on using the changeset viewer.