Add a robots "noindex" meta tag to the submission form (like we already do for the comment submission form) HEAD
authorDirk Haun <dirk@haun-online.de>
Sat Oct 17 13:51:45 2009 +0200 (3 months ago)
branchHEAD
changeset 7382dfadb4aad5d1
parent 7381e02d71d401c3
child 73832b8b42245059
Add a robots "noindex" meta tag to the submission form (like we already do for the comment submission form)
public_html/submit.php
     1.1 --- a/public_html/submit.php	Sat Oct 17 13:26:13 2009 +0200
     1.2 +++ b/public_html/submit.php	Sat Oct 17 13:51:45 2009 +0200
     1.3 @@ -451,7 +451,8 @@
     1.4              $pagetitle = '';
     1.5              break;
     1.6      }
     1.7 -    $display .= COM_siteHeader ('menu', $pagetitle);
     1.8 +    $noindex = '<meta name="robots" content="noindex"' . XHTML . '>' . LB;
     1.9 +    $display .= COM_siteHeader ('menu', $pagetitle, $noindex);
    1.10      $display .= submissionform($type, $mode, $topic);
    1.11      $display .= COM_siteFooter();
    1.12  }