Changeset 634 for trunk/wiki.cgi

Show
Ignore:
Timestamp:
05/27/05 19:51:25 (4 years ago)
Author:
earle
Message:

fix RDF test failures; new redirection message

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wiki.cgi

    r621 r634  
    4141    $node = $formatter->node_param_to_node_name( $node ); 
    4242 
    43     my $action = $q->param('action') || 'display'; 
    44     my $commit = $q->param('Save') || 0; 
    45     my $preview = $q->param('preview') || 0; 
    46     my $search_terms = $q->param('terms') || $q->param('search') || ''; 
    47     my $format = $q->param('format') || ''; 
     43    my $action       = $q->param('action')  || 'display'; 
     44    my $commit       = $q->param('Save')    || 0; 
     45    my $preview      = $q->param('preview') || 0; 
     46    my $search_terms = $q->param('terms')   || $q->param('search') || ''; 
     47    my $format       = $q->param('format')  || ''; 
     48    my $oldid        = $q->param('oldid')   || ''; 
    4849 
    4950    # Alternative method of calling search, supported by usemod. 
     
    122123                                     ); 
    123124            } else { 
    124                 $guide->display_node( id => $node, version => $version ); 
     125                $guide->display_node( 
     126                                      id      => $node, 
     127                                      version => $version, 
     128                                      oldid   => $oldid, 
     129                ); 
     130                 
    125131            } 
    126132        }