Changeset 26593


Ignore:
Timestamp:
2013-01-07T15:14:42+13:00 (11 years ago)
Author:
davidb
Message:

Tidied up on cgi-param names being used.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs3-extensions/html-to-expeditee/trunk/src/src/cgi-bin/html-to-expeditee.pl.in

    r26519 r26593  
    1 #!@FULL_PERL_EXE@ -w
     1 #!@FULL_PERL_EXE@ -w
    22
    33# Need to specify the full path of Perl above, e.g. for Windows something like
     
    6161               name="cl" value="$cl" id="cl" />
    6262
    63         <input value="$site" id="site" type="hidden">
     63        <input value="$site" name="site" id="site" type="hidden">
    6464        <input value="Go" id="go"
    6565               class="ui-button ui-widget ui-state-default ui-corner-all"
     
    147147              }
    148148              else if (href.match(docRE)) {
    149                 if(!visitedURLS[href]){
     149                if(!visitedURLs[href]){
    150150                  var docMatch = docRE.exec(href);
    151151                  var docOID = docMatch[1];
     
    344344    # as the collection and classifier value
    345345
    346     my $collect = $gsdl_cgi->clean_param("c");   
    347     my $cl = $gsdl_cgi->clean_param("cl");  
    348 
     346    my $collect = $gsdl_cgi->clean_param("collect");   
     347    my $cl = $gsdl_cgi->clean_param("cl");
     348   
    349349    # Establish collect_dir using defining 'site' along the way if GS3
    350350
Note: See TracChangeset for help on using the changeset viewer.