summaryrefslogtreecommitdiff
path: root/app/Core
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-11-09 19:11:51 -0500
committerFrederic Guillot <fred@kanboard.net>2016-11-09 19:11:51 -0500
commit544da3150a5085cebd8c043698d607efe873e19f (patch)
tree0cfc32d5adb1727641e140fee2a658a8427d5393 /app/Core
parentd261f4146d3bf2fb069f72067ba0a52e8e13dce3 (diff)
Add P3P headers to avoid potential issues with IE
Diffstat (limited to 'app/Core')
-rw-r--r--app/Core/Http/Response.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/Core/Http/Response.php b/app/Core/Http/Response.php
index 0f16fb65..0af763a6 100644
--- a/app/Core/Http/Response.php
+++ b/app/Core/Http/Response.php
@@ -129,6 +129,18 @@ class Response extends Base
}
/**
+ * Add P3P headers for Internet Explorer
+ *
+ * @access public
+ * @return $this
+ */
+ public function withP3P()
+ {
+ $this->withHeader('P3P', 'CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
+ return $this;
+ }
+
+ /**
* Set HTTP response body
*
* @access public