Add a robots "noindex" meta tag to the submission form (like we already do for the comment submission form)
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 }