diff options
author | nikrou <nikrou@piwigo.org> | 2010-06-09 20:26:47 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-06-09 20:26:47 +0000 |
commit | a59d15b7b68e86b8d51b77b4b53e4f2e83b273a3 (patch) | |
tree | 249d1ba514079e709a0010087e2192e71bf9ec18 /include/config_default.inc.php | |
parent | 54fc109f97284a40cba84b131fcc5948e503bbac (diff) |
Fix bug 1722 : PosgtreSQL wants all fields in select to be in Group by clause
or agregate function
Fix issue for lambda function (incorrect number of params)
merge from trunk.
git-svn-id: http://piwigo.org/svn/branches/2.1@6511 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/config_default.inc.php')
-rw-r--r-- | include/config_default.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index f57407945..e0d7b2318 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -514,6 +514,10 @@ $conf['apache_authentication'] = false; // piwigo_users table. $conf['users_table'] = $prefixeTable.'users'; +// If you decide to use external authentication +// change conf below by $conf['external_authentification'] = true; +$conf['external_authentification'] = false; + // Other tables can be changed, if you define associated constants // Example: // define('USER_INFOS_TABLE', 'pwg_main'.'user_infos'); |