summaryrefslogtreecommitdiff
path: root/roundcubemail/index.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-12-06 21:41:27 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-12-06 21:41:27 +0000
commit8860e71e5c02e36b1eb292b86e2d3f2ce5ec252f (patch)
tree3a926650cbc0b6170cd00142bb050da63ac97a2d /roundcubemail/index.php
parenta66915f63c8b263d36a18e0361176ed251e6fe9a (diff)
Preview pane and marking as read (#1484132)
git-svn-id: https://svn.roundcube.net/trunk@400 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/index.php')
-rw-r--r--roundcubemail/index.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php
index 5d42e6ddd..e67518512 100644
--- a/roundcubemail/index.php
+++ b/roundcubemail/index.php
@@ -2,7 +2,7 @@
/*
+-----------------------------------------------------------------------+
| RoundCube Webmail IMAP Client |
- | Version 0.1-20061201 |
+ | Version 0.1-20061206 |
| |
| Copyright (C) 2005-2006, RoundCube Dev. - Switzerland |
| Licensed under the GNU GPL |
@@ -40,7 +40,7 @@
*/
-define('RCMAIL_VERSION', '0.1-20061201');
+define('RCMAIL_VERSION', '0.1-20061206');
// define global vars
$CHARSET = 'UTF-8';
@@ -154,7 +154,6 @@ if ($_action=='html2text')
$converter = new html2text($htmlText);
// TODO possibly replace with rcube_remote_response()
- send_nocacheing_headers();
header('Content-Type: text/plain');
$plaintext = $converter->get_text();
print $plaintext;