diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-04-18 21:56:18 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-04-18 21:56:18 +0000 |
commit | be169d59b61460116e951d28724cac3c1f383372 (patch) | |
tree | 35fb018f7f610d3c7b4a4ffbff959484736c1e3e | |
parent | 3d8febbaa53bd7179cc934909544a606f48f10b8 (diff) | |
download | brdo-be169d59b61460116e951d28724cac3c1f383372.tar.gz brdo-be169d59b61460116e951d28724cac3c1f383372.tar.bz2 |
Leftover variable name spotted by Amr Mostafa, reported by email (because 'the fix is too small and trivial to submit an issue')
-rw-r--r-- | includes/language.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/language.inc b/includes/language.inc index cb8196d02..8dcebcc91 100644 --- a/includes/language.inc +++ b/includes/language.inc @@ -107,7 +107,7 @@ function language_url_rewrite(&$path, &$options) { break; case LANGUAGE_NEGOTIATION_DOMAIN: - if ($rewritelang->domain) { + if ($path_language->domain) { $options['absolute'] = TRUE; $path = $path_language->domain .'/'. $path; } |