diff options
author | plegall <plg@piwigo.org> | 2009-03-13 23:37:34 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2009-03-13 23:37:34 +0000 |
commit | ab6f96964aef65c6c284501ac2027eb4435a1bfc (patch) | |
tree | 4e0be73c485e2a5c87d3ea0b8aa11ffc4928f770 /include | |
parent | 497e753bcf4208e1adc457dbc0f406b923594343 (diff) |
bug 926 fixed: change links to piwigo.org so that they go to existing URLs.
new: if the current language is french, the links go to fr.piwigo.org insted.
git-svn-id: http://piwigo.org/svn/branches/2.0@3196 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/common.inc.php | 9 | ||||
-rw-r--r-- | include/constants.php | 3 |
2 files changed, 9 insertions, 3 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index 76054153a..1ca54e1bb 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -125,6 +125,15 @@ load_plugins(); include(PHPWG_ROOT_PATH.'include/user.inc.php'); +if ('fr_FR' == $user['language']) { + define('PHPWG_DOMAIN', 'fr.piwigo.org'); +} +else { + define('PHPWG_DOMAIN', 'piwigo.org'); +} +define('PHPWG_URL', 'http://'.PHPWG_DOMAIN); +define('PEM_URL', 'http://'.PHPWG_DOMAIN.'/ext'); + // language files load_language('common.lang'); diff --git a/include/constants.php b/include/constants.php index 27e429a14..99a4816e7 100644 --- a/include/constants.php +++ b/include/constants.php @@ -23,9 +23,6 @@ // Default settings define('PHPWG_VERSION', '2.0'); -define('PHPWG_DOMAIN', 'piwigo.org'); -define('PHPWG_URL', 'http://'.PHPWG_DOMAIN); -define('PEM_URL', 'http://'.PHPWG_DOMAIN.'/ext'); define('PHPWG_DEFAULT_LANGUAGE', 'en_UK'); define('PHPWG_DEFAULT_TEMPLATE', 'yoga/Sylvia'); |