From b1c1541427bc3d8463cd724fc01dfda2a776bc6e Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Sun, 07 Dec 2008 06:10:49 -0500 Subject: [PATCH] - Add Robots meta tag in login page and installer (#1484846) --- CHANGELOG | 1 + skins/default/templates/login.html | 1 + installer/index.php | 3 ++- 3 files changed, 4 insertions(+), 1 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4a4d3a1..4957157 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,6 +7,7 @@ - Fix search results page jumps in LDAP addressbook (#1485253) - Fix empty line before the signature in IE (#1485351) - Fix horizontal scrollbar in preview pane on IE (#1484633) +- Add Robots meta tag in login page and installer (#1484846) 2008/12/04 (alec) ---------- diff --git a/installer/index.php b/installer/index.php index ea83741..f7a5cea 100644 --- a/installer/index.php +++ b/installer/index.php @@ -58,7 +58,8 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>RoundCube Webmail Installer</title> -<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +<meta name="Robots" content="noindex,nofollow" /> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="styles.css" /> <script type="text/javascript" src="client.js"></script> </head> diff --git a/skins/default/templates/login.html b/skins/default/templates/login.html index 9e1cc4a..d16a08f 100644 --- a/skins/default/templates/login.html +++ b/skins/default/templates/login.html @@ -2,6 +2,7 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title><roundcube:object name="pagetitle" /></title> +<meta name="Robots" content="noindex,nofollow" /> <roundcube:include file="/includes/links.html" /> <style type="text/css"> -- Gitblit v1.9.1