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', );