Commit 1cbb26080eb8819ee61caa7f37ec4e3baa6dde51
1 parent
1561750b
uncommented authentication class instantiation
moved Log include git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@297 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
3 additions
and
3 deletions
config/dmsDefaults.php
| ... | ... | @@ -110,8 +110,8 @@ require_once("$default->owl_fs_root/phplib/db_mysql.inc"); |
| 110 | 110 | // Change this to reflect the authentication method you are using |
| 111 | 111 | //require_once("$default->owl_fs_root/lib/LDAPAuthenticator.inc"); |
| 112 | 112 | //require_once("$default->owl_fs_root/lib/Authenticator.inc"); |
| 113 | -//$default->authentication_class = "DBAuthenticator"; | |
| 114 | -//require_once("$default->owl_fs_root/lib/authentication/$default->authentication_class.inc"); | |
| 113 | +$default->authentication_class = "DBAuthenticator"; | |
| 114 | +require_once("$default->owl_fs_root/lib/authentication/$default->authentication_class.inc"); | |
| 115 | 115 | |
| 116 | 116 | // logo file that must reside inside lang/graphics directory |
| 117 | 117 | $default->logo = "kt.jpg"; |
| ... | ... | @@ -142,10 +142,10 @@ $default->siteMap->addPage("addOrganisation", "addOrganisation.php", "Administra |
| 142 | 142 | $default->siteMap->addPage("scratchPad", "tests/scratchPad.php", "Tests", "Unit Administrators"); |
| 143 | 143 | $default->siteMap->addPage("documentBrowserTest", "tests/documentmanagement/DocumentBrowser.php", "Tests", "Anonymous"); |
| 144 | 144 | |
| 145 | -require_once("$default->owl_fs_root/lib/Log.inc"); | |
| 146 | 145 | require_once("$default->owl_fs_root/lib/Session.inc"); |
| 147 | 146 | require_once("$default->owl_fs_root/lib/control.inc"); |
| 148 | 147 | require_once("$default->owl_fs_root/lib/database/db.inc"); |
| 149 | 148 | require_once("$default->owl_fs_root/lib/database/lookup.inc"); |
| 150 | 149 | require_once("$default->owl_fs_root/lib/dms.inc"); |
| 150 | +require_once("$default->owl_fs_root/lib/Log.inc"); | |
| 151 | 151 | ?> | ... | ... |