aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-25 07:01:14 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-25 07:01:14 -0500
commit561b6302104d5f722f90ba7244375f217b17a18d (patch)
treeccd932ea86d9de956aeaf7487e172d4bd66198bc
parenteebb84fc9cbb018fedffb682bb1a4ccb9dd43dcd (diff)
fixes #948 - Request: Add ROBOTS Meta Tag to unauthenticated content within the Web Interface.
-rw-r--r--MediaBrowser.WebDashboard/Api/PackageCreator.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.WebDashboard/Api/PackageCreator.cs b/MediaBrowser.WebDashboard/Api/PackageCreator.cs
index 18f2e54a3..ff61af0f3 100644
--- a/MediaBrowser.WebDashboard/Api/PackageCreator.cs
+++ b/MediaBrowser.WebDashboard/Api/PackageCreator.cs
@@ -172,7 +172,9 @@ namespace MediaBrowser.WebDashboard.Api
sb.Append("<meta name=\"application-name\" content=\"Media Browser\">");
//sb.Append("<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">");
- sb.Append("<link rel=\"icon\" sizes=\"114x114\" href=\"css/images/touchicon114.png\" />");
+ sb.Append("<meta name=\"application-name\" content=\"Media Browser\">");
+
+ sb.Append("<meta name=\"robots\" content=\"noindex, nofollow, noarchive\" />");
// http://developer.apple.com/library/ios/#DOCUMENTATION/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html
sb.Append("<link rel=\"apple-touch-icon\" href=\"css/images/touchicon.png\" />");