From 4c7696e8772fb6f87463071d3cf8f1a69d5c24cd Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Sun, 7 Jul 2024 11:31:32 +0200 Subject: [PATCH] Disable x-frame-options by default --- application/config/routes.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/application/config/routes.php b/application/config/routes.php index 0ee2d88e..0ba6dc84 100644 --- a/application/config/routes.php +++ b/application/config/routes.php @@ -64,6 +64,9 @@ $route['translate_uri_dashes'] = false; | Set the appropriate headers so that iframe control and permissions are | properly configured. | +| Enable this if you want to disable use of Easy!Appointments within an +| iframe. +| | Options: | | - DENY @@ -71,7 +74,7 @@ $route['translate_uri_dashes'] = false; | */ -header('X-Frame-Options: SAMEORIGIN'); +// header('X-Frame-Options: SAMEORIGIN'); /* | -------------------------------------------------------------------------