diff options
author | plegall <plg@piwigo.org> | 2010-05-09 20:51:01 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-05-09 20:51:01 +0000 |
commit | 84691404710b8553eaae0937454ef684293d2684 (patch) | |
tree | 3f14c6e1c929b960a8729ebe0a69a1e8b019dd4d /include | |
parent | 59f985e91604b2fbb6dc10fe99150adc6b3ad5e8 (diff) |
add nl.piwigo.org as domain name if current language is nl_NL
fix typos on language names in install.php
correct list of available newsletters
git-svn-id: http://piwigo.org/svn/trunk@6152 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/common.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index 0f1160a54..9805bc362 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -122,7 +122,7 @@ load_plugins(); include(PHPWG_ROOT_PATH.'include/user.inc.php'); -if (in_array( substr($user['language'],0,2), array('fr','it','de','es','pl','hu','ru') ) ) +if (in_array( substr($user['language'],0,2), array('fr','it','de','es','pl','hu','ru','nl') ) ) { define('PHPWG_DOMAIN', substr($user['language'],0,2).'.piwigo.org'); } |