Adapt to master file format
authoroes <oes@users.sourceforge.net>
Fri, 23 Aug 2002 16:46:05 +0000 (16:46 +0000)
committeroes <oes@users.sourceforge.net>
Fri, 23 Aug 2002 16:46:05 +0000 (16:46 +0000)
doc/webserver/actions/step3.php

index f6b6fa9..afb52a6 100644 (file)
@@ -2,15 +2,18 @@
 <html>
  <!--
 
-  File :  $Source: /cvsroot/ijbswa//current/doc/webserver/actions/step3.php,v $
+  File :  $Source: /cvsroot/ijbswa/current/doc/webserver/actions/step3.php,v $
 
   Purpose  :  Submit form for actions file feedback (step 1)
               This file belongs in
               ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
 
-  $Id: step3.php,v 1.16 2002/04/13 14:34:59 oes Exp $
+  $Id: step3.php,v 1.16.2.1 2002/08/23 12:25:31 oes Exp $
 
   $Log: step3.php,v $
+  Revision 1.16.2.1  2002/08/23 12:25:31  oes
+  Fixed Typo
+
   Revision 1.16  2002/04/13 14:34:59  oes
   Include unique ID in tracker and log; Include URL in tracker summary; add more newlines in tracker
 
@@ -222,7 +225,7 @@ if (isset($remarks))
    $lines = explode("\n", $remarks);
    foreach ($lines as $line)
    {
-      fwrite($fp, "#REMARKS: $line\n");
+      fwrite($fp, "#MASTER# REMARKS: $line\n");
    }
 }
 
@@ -237,21 +240,21 @@ switch ($problem)
     * Banner not blocked:
     */
    case "P1":
-      fwrite($fp, "#BLOCK-REFERRER: $referrer_url\n");
+      fwrite($fp, "#MASTER# BLOCK-REFERRER: $referrer_url\n");
       if (isset($num_images))
       {
          for($i=0; $i < $num_images; $i++)
          {
              if (isset($block_image[$i]))
              {
-                fwrite($fp, "#BLOCK-URL: $image_url[$i]\n");
+                fwrite($fp, "#MASTER# BLOCK-URL: $image_url[$i]\n");
                 $trackertext .= "Block image: $image_url[$i]\n\n";
              }
          }
       }
       if (isset($manual_image_url) && ($manual_image_url != ""))
       {
-         fwrite($fp, "#BLOCK-URL: $manual_image_url\n");
+         fwrite($fp, "#MASTER# BLOCK-URL: $manual_image_url\n");
          $trackertext .= "Block image: $manual_image_url\n\n";
       }
       break;
@@ -260,10 +263,10 @@ switch ($problem)
     * Innocent image blocked:
     */
    case "P2":
-      fwrite($fp, "#UNBLOCK-REFERRER: $referrer_url\n");
+      fwrite($fp, "#MASTER# UNBLOCK-REFERRER: $referrer_url\n");
       if (isset($image_url) && ($image_url != ""))
       {
-         fwrite($fp, "#UNBLOCK-URL: $image_url\n");
+         fwrite($fp, "#MASTER# UNBLOCK-URL: $image_url\n");
          $trackertext .= "Unblock image: $image_url\n\n";
       }
       break;
@@ -272,7 +275,7 @@ switch ($problem)
     * All other problems:
     */
    default:
-      fwrite($fp, "#PROBLEM-URL: $referrer_url\n");
+      fwrite($fp, "#MASTER# PROBLEM-URL: $referrer_url\n");
       break;
 }