diff options
author | plegall <plg@piwigo.org> | 2004-12-20 19:26:43 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2004-12-20 19:26:43 +0000 |
commit | c19f01d77c990962baef1906ac0ed60280324b77 (patch) | |
tree | 3adbc0c836875d77d06feb987773030e36646c86 /include/config.inc.php | |
parent | 1d46ea86e9d3925a60f1d126d4b1bd642630741a (diff) |
- replacement of PREFIX_TABLE constant in delete_user function
- deletion of $isadmin variable, replaced by constant IN_ADMIN
- small refactoring
- in include/common.inc.php, deletion of useless part "Obtain and encode
users IP" and corresponding functions encode_ip and decode_ip
- definition of $conf['default_language'] deleted from
include/config.inc.php : it is already present in database table config
- function init_userprefs deleted (useless), all its content moved to
include/user.inc.php
- admin.lang.php and faq.lang.php are loaded only if current user is in
administrative section
git-svn-id: http://piwigo.org/svn/trunk@650 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config.inc.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/config.inc.php b/include/config.inc.php index 22d205fad..08312eccc 100644 --- a/include/config.inc.php +++ b/include/config.inc.php @@ -158,10 +158,6 @@ $conf['session_id_size'] = 10; // admin/infos_images $conf['info_nb_elements_page'] = 5; -// default_language : language used if language set in user database is not -// available -$conf['default_language'] = 'en_UK.iso-8859-1'; - // show_queries : for debug purpose, show queries and execution times $conf['show_queries'] = false; |