summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-27 12:32:13 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-27 12:32:13 +0000
commitb0a4ad29da58b1904cc271f794eb72e72215e4c0 (patch)
treeca0d1823bd99b52b67c56efaf495ebb1637082d7
parentf77b60f2916de35b2e64f462e98853c9a7134895 (diff)
downloadbrdo-b0a4ad29da58b1904cc271f794eb72e72215e4c0.tar.gz
brdo-b0a4ad29da58b1904cc271f794eb72e72215e4c0.tar.bz2
#194743 report by Murz, patch by myself: in domain language negotiation mode, we should tell url() that we built an external URL, not that we need an absolute URL built by url()
-rw-r--r--includes/language.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/language.inc b/includes/language.inc
index 9618e1402..103b59d26 100644
--- a/includes/language.inc
+++ b/includes/language.inc
@@ -111,7 +111,7 @@ function language_url_rewrite(&$path, &$options) {
case LANGUAGE_NEGOTIATION_DOMAIN:
if ($path_language->domain) {
- $options['absolute'] = TRUE;
+ $options['external'] = TRUE;
$path = $path_language->domain .'/'. $path;
}
break;