Changeset 752
- Timestamp:
- 04/04/06 22:06:14 (3 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
lib/OpenGuides.pm (modified) (2 diffs)
-
newpage.cgi (modified) (4 diffs)
-
preferences.cgi (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/OpenGuides.pm
r736 r752 179 179 print "Content-Type: text/plain\n\n"; 180 180 print $raw; 181 exit0;181 return 0; 182 182 } 183 183 … … 225 225 return $output if $return_output; 226 226 print $output; 227 exit0;227 return 0; 228 228 } 229 229 } -
trunk/newpage.cgi
r658 r752 30 30 } 31 31 32 exit 0;33 34 32 sub show_form { 35 33 print OpenGuides::Template->output( wiki => $wiki, … … 57 55 message => "Please enter a page name!", 58 56 return_url => "newpage.cgi" } ); 59 exit0;57 return 0; 60 58 } 61 59 … … 82 80 } 83 81 ); 84 exit0;82 return 0; 85 83 } 86 84 … … 88 86 my $node_param = $wiki->formatter->node_name_to_node_param($pagename); 89 87 print "Location: ".$config->script_url.$config->script_name."?action=edit;id=$node_param\n\n"; 90 exit0;88 return 0; 91 89 } 92 90 -
trunk/preferences.cgi
r731 r752 21 21 show_form(); 22 22 } 23 24 exit 0;25 23 26 24 sub set_preferences {
