From 47eff923e5b8a7a90bb931fac40628938ff16678 Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Sat, 14 Feb 2015 13:26:13 +1100 Subject: [PATCH] *** REMOVED RELATIVE LINK POLICY *** A relative link policy was a bad idea, Laravel/Redirects did not play nicely at all. --- config/cms.php | 3 +-- config/testing/cms.php | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/config/cms.php b/config/cms.php index 92afc59d7..004608af4 100644 --- a/config/cms.php +++ b/config/cms.php @@ -215,7 +215,6 @@ return array( | | Controls how URL links are generated throughout the application. | - | relative - relative to the application, schema and hostname is omitted | detect - detect hostname and use the current schema | secure - detect hostname and force HTTPS schema | insecure - detect hostname and force HTTP schema @@ -223,6 +222,6 @@ return array( | */ - 'linkPolicy' => 'relative', + 'linkPolicy' => 'detect', ); diff --git a/config/testing/cms.php b/config/testing/cms.php index f0c04f03f..cb1972d17 100644 --- a/config/testing/cms.php +++ b/config/testing/cms.php @@ -116,7 +116,6 @@ return array( | | Controls how URL links are generated throughout the application. | - | relative - relative to the application, schema and hostname is omitted | detect - detect hostname and use the current schema | secure - detect hostname and force HTTPS schema | insecure - detect hostname and force HTTP schema @@ -124,5 +123,5 @@ return array( | */ - 'linkPolicy' => 'relative', + 'linkPolicy' => 'detect', );