MINOR: Add noindex metatag to debugview

This commit is contained in:
Aaron Carlino 2020-06-25 12:09:28 +12:00
parent 395893b559
commit 658ca4deb1

View File

@ -223,6 +223,7 @@ class DebugView
->resolveURL('silverstripe/framework:client/styles/debug.css');
$output = '<!DOCTYPE html><html><head><title>' . $url . '</title>';
$output .= '<link rel="stylesheet" type="text/css" href="' . $debugCSS . '" />';
$output .= '<meta name="robots" content="noindex">';
$output .= '</head>';
$output .= '<body>';