You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 1999/07/30 11:51:05 UTC

cvs commit: apache-1.3/htdocs/manual/misc howto.html

rse         99/07/30 02:51:03

  Modified:    htdocs/manual/misc howto.html
  Log:
  Fix PR#4720
  
  Revision  Changes    Path
  1.12      +3 -2      apache-1.3/htdocs/manual/misc/howto.html
  
  Index: howto.html
  ===================================================================
  RCS file: /home/cvs/apache-1.3/htdocs/manual/misc/howto.html,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- howto.html	1999/04/21 05:01:24	1.11
  +++ howto.html	1999/07/30 09:51:01	1.12
  @@ -85,8 +85,9 @@
   <BLOCKQUOTE><PRE>
   #!/usr/local/bin/perl
   
  -print "Status: 302 Moved Temporarily\r
  -Location: http://www.some.where.else.com/\r\n\r\n";
  +print "Status: 302 Moved Temporarily\r\n" .
  +      "Location: http://www.some.where.else.com/\r\n" .
  +      "\r\n";
   
   </PRE></BLOCKQUOTE></P>