Author: dom Date: 2006-03-07 23:18:15 +0000 (Tue, 07 Mar 2006) New Revision: 748
Modified: trunk/Changes trunk/wiki.cgi Log: mod_perl fixes (references #6)
Modified: trunk/Changes =================================================================== --- trunk/Changes 2006-03-05 22:46:38 UTC (rev 747) +++ trunk/Changes 2006-03-07 23:18:15 UTC (rev 748) @@ -1,3 +1,6 @@ +0.53 + Miscellanous fixes for mod_perl. + 0.52 5 March 2006 IMPORTANT CHANGE: "supersearch.cgi" is now simply "search.cgi". If you have customisations to your templates, you may need to make changes
Modified: trunk/wiki.cgi =================================================================== --- trunk/wiki.cgi 2006-03-05 22:46:38 UTC (rev 747) +++ trunk/wiki.cgi 2006-03-07 23:18:15 UTC (rev 748) @@ -75,7 +75,6 @@ my @nodes = $wiki->list_all_nodes(); $node = $nodes[int(rand(scalar(@nodes) + 1)) + 1]; print $guide->redirect_to_node($node); - exit 0; } elsif ($action eq 'find_within_distance') { $guide->find_within_distance( id => $node, @@ -166,7 +165,6 @@ . qq(</blockquote><p><a href="$script_name">Return to the Wiki home page</a> </body></html>); } -exit 0;
############################ subroutines ###################################
@@ -280,7 +278,6 @@ config => $config ); print "Content-type: application/rdf+xml\n\n"; print $rdf_writer->emit_rdfxml( node => $args{node} ); - exit 0; }
sub process_template {