Commit 58867324a76e56557e39a5fb5dad6e2d31f060c0
1 parent
94fe45a6
Moved includes to the bottom of the file to prevent conflicts
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@208 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
5 additions
and
4 deletions
config/dmsDefaults.php
| ... | ... | @@ -11,9 +11,6 @@ |
| 11 | 11 | |
| 12 | 12 | // include the environment settings |
| 13 | 13 | require_once("environment.php"); |
| 14 | -require_once($default->owl_root_url . "/lib/Session.inc"); | |
| 15 | -require_once($default->owl_root_url . "/lib/control.inc"); | |
| 16 | -require_once($default->owl_root_url . "/lib/db.inc"); | |
| 17 | 14 | |
| 18 | 15 | $default->owl_graphics_url = $default->owl_root_url . "/graphics"; |
| 19 | 16 | $default->owl_LangDir = $default->owl_fs_root . "/locale"; |
| ... | ... | @@ -144,5 +141,9 @@ $default->siteMap->addPage("addUnit", "addUnit.php", "Administration", "Unit Adm |
| 144 | 141 | $default->siteMap->addPage("addOrganisation", "addOrganisation.php", "Administration", "System Administrators"); |
| 145 | 142 | $default->siteMap->addPage("scratchPad", "tests/scratchPad.php", "Tests", "Unit Administrators"); |
| 146 | 143 | |
| 147 | -require_once("$default->owl_fs_root/lib/Log.inc"); | |
| 144 | +require_once($default->owl_root_url " ./lib/Log.inc"); | |
| 145 | +require_once($default->owl_root_url . "/lib/Session.inc"); | |
| 146 | +require_once($default->owl_root_url . "/lib/control.inc"); | |
| 147 | +require_once($default->owl_root_url . "/lib/db.inc"); | |
| 148 | + | |
| 148 | 149 | ?> | ... | ... |