diff options
author | alecpl <alec@alec.pl> | 2010-09-25 13:03:53 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-09-25 13:03:53 +0000 |
commit | e019f2d0f2dc2fbfa345ab5d7ae85e67bfdd76b8 (patch) | |
tree | ebde4a0ae4c57dd23a84d841b7eb6a04c1b6cdcf /index.php | |
parent | 6465a92a38bb42dae3f669e9f2e4f570b6dd5d95 (diff) |
- s/RoundCube/Roundcube/
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,10 +1,10 @@ <?php /* +-------------------------------------------------------------------------+ - | RoundCube Webmail IMAP Client | + | Roundcube Webmail IMAP Client | | Version 0.4-20100807 | | | - | Copyright (C) 2005-2010, RoundCube Dev. - Switzerland | + | Copyright (C) 2005-2010, Roundcube Dev. - Switzerland | | | | This program is free software; you can redistribute it and/or modify | | it under the terms of the GNU General Public License version 2 | @@ -146,7 +146,7 @@ $request_check_whitelist = array('login'=>1, 'spell'=>1); // check client X-header to verify request origin if ($OUTPUT->ajax_call) { - if (!$RCMAIL->config->get('devel_mode') && rc_request_header('X-RoundCube-Request') != $RCMAIL->get_request_token() && !empty($RCMAIL->user->ID)) { + if (!$RCMAIL->config->get('devel_mode') && rc_request_header('X-Roundcube-Request') != $RCMAIL->get_request_token() && !empty($RCMAIL->user->ID)) { header('HTTP/1.1 404 Not Found'); die("Invalid Request"); } @@ -169,8 +169,8 @@ if (empty($RCMAIL->user->ID)) { if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) { $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"), html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") . - html::p(null, "The install script of your RoundCube installation is still stored in its default location!") . - html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the RoundCube directory because . + html::p(null, "The install script of your Roundcube installation is still stored in its default location!") . + html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the Roundcube directory because . these files may expose sensitive configuration data like server passwords and encryption keys to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.") ) |