defer language support in URIs to version 4.

This commit is contained in:
Taylor Otwell
2012-08-09 22:42:03 -05:00
parent f5123f935a
commit 79f92e57df
3 changed files with 2 additions and 61 deletions

View File

@@ -107,14 +107,6 @@ class URL {
$root = static::base().'/'.Config::get('application.index');
// If multiple languages are being supported via URIs, we will append current
// language to the URI so all redirects and URLs generated include the
// current language so it is not lost on further requests.
if (count(Config::get('application.languages')) > 0)
{
$root .= '/'.Config::get('application.language');
}
// Since SSL is not often used while developing the application, we allow the
// developer to disable SSL on all framework generated links to make it more
// convenient to work with the site while developing locally.