diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-10-01 15:44:35 -0400 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-10-01 15:44:35 -0400 |
commit | c8e7100a060ffc9f60604caa373f5c57883b4bfb (patch) | |
tree | 843e371031de8db8d829ce417dac093a62c5140f /modules/locale/locale.test | |
parent | 6395a07329e9a67e7750b7b9023d1479e577980f (diff) | |
download | brdo-c8e7100a060ffc9f60604caa373f5c57883b4bfb.tar.gz brdo-c8e7100a060ffc9f60604caa373f5c57883b4bfb.tar.bz2 |
- Patch #1250800 by attiks, dereine: language domain should work regardless of ports or protocols.
Diffstat (limited to 'modules/locale/locale.test')
-rw-r--r-- | modules/locale/locale.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/locale/locale.test b/modules/locale/locale.test index ec9d1d82f..6d8ae94b2 100644 --- a/modules/locale/locale.test +++ b/modules/locale/locale.test @@ -1929,8 +1929,8 @@ class LocaleUILanguageNegotiationTest extends DrupalWebTestCase { $this->assertResponse(404, "Unknown language path prefix should return 404"); // Setup for domain negotiation, first configure the language to have domain - // URL. - $edit = array('prefix' => '', 'domain' => "http://$language_domain"); + // URL. We use https and a port to make sure that only the domain name is used. + $edit = array('prefix' => '', 'domain' => "https://$language_domain:99"); $this->drupalPost("admin/config/regional/language/edit/$language", $edit, t('Save language')); // Set the site to use domain language negotiation. |