diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-12-07 11:10:49 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-12-07 11:10:49 +0000 |
| commit | 36a0b69d1cb0507065c7f37ada0340a8a91ee154 (patch) | |
| tree | c599b9610cf4831237e712b627db3588a50b11f4 | |
| parent | 630e1d1623106111c6b9e6ca4f0218ec804b7f40 (diff) | |
- Add Robots meta tag in login page and installer (#1484846)
git-svn-id: https://svn.roundcube.net/trunk@2132 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 1 | ||||
| -rw-r--r-- | roundcubemail/installer/index.php | 3 | ||||
| -rw-r--r-- | roundcubemail/skins/default/templates/login.html | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 4a4d3a12d..49571575a 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -7,6 +7,7 @@ CHANGELOG RoundCube Webmail - 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/roundcubemail/installer/index.php b/roundcubemail/installer/index.php index ea8374165..f7a5cea4b 100644 --- a/roundcubemail/installer/index.php +++ b/roundcubemail/installer/index.php @@ -58,7 +58,8 @@ if ($RCI->configured && empty($_REQUEST['_step'])) { <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/roundcubemail/skins/default/templates/login.html b/roundcubemail/skins/default/templates/login.html index 9e1cc4a00..d16a08fdd 100644 --- a/roundcubemail/skins/default/templates/login.html +++ b/roundcubemail/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"> |
