summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-10-30 11:34:31 +0000
committerthomascube <thomas@roundcube.net>2011-10-30 11:34:31 +0000
commitabdf31486a946d63623c3047d08e7730926c4d86 (patch)
tree28727469589c57b0b624726d31fcddaba8f89011 /index.php
parent187ff4e59719cf7b695ce9190ed3967885f557bb (diff)
Allow cross-task ajax requests
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index a1eb54587..dce3db36d 100644
--- a/index.php
+++ b/index.php
@@ -195,7 +195,7 @@ else {
// check client X-header to verify request origin
if ($OUTPUT->ajax_call) {
if (rc_request_header('X-Roundcube-Request') != $RCMAIL->get_request_token() && !$RCMAIL->config->get('devel_mode')) {
- header('HTTP/1.1 404 Not Found');
+ header('HTTP/1.1 403 Forbidden');
die("Invalid Request");
}
}