Commit 9ad392829f959db4ef93f83ae9e2e25b6db2516f
1 parent
dbadfda7
moved SiteMap class to lib/session and updated references
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@375 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
3 changed files
with
2 additions
and
2 deletions
config/dmsDefaults.php
| @@ -127,7 +127,7 @@ $default->owl_timeout = 1200; | @@ -127,7 +127,7 @@ $default->owl_timeout = 1200; | ||
| 127 | $default->debug = True; | 127 | $default->debug = True; |
| 128 | 128 | ||
| 129 | // define site mappings | 129 | // define site mappings |
| 130 | -require_once("$default->owl_fs_root/lib/SiteMap.inc"); | 130 | +require_once("$default->owl_fs_root/lib/session/SiteMap.inc"); |
| 131 | $default->siteMap = new SiteMap(); | 131 | $default->siteMap = new SiteMap(); |
| 132 | // action, section, page, userClass (SA, UA, U, A) | 132 | // action, section, page, userClass (SA, UA, U, A) |
| 133 | $default->siteMap->addPage("login", "/login.php?loginAction=login", "General", "Anonymous"); | 133 | $default->siteMap->addPage("login", "/login.php?loginAction=login", "General", "Anonymous"); |
control.php
| @@ -17,7 +17,7 @@ | @@ -17,7 +17,7 @@ | ||
| 17 | 17 | ||
| 18 | // main library routines and defaults | 18 | // main library routines and defaults |
| 19 | require_once("./config/dmsDefaults.php"); | 19 | require_once("./config/dmsDefaults.php"); |
| 20 | -require_once("$default->owl_fs_root/lib/SiteMap.inc"); | 20 | +require_once("$default->owl_fs_root/lib/session/SiteMap.inc"); |
| 21 | 21 | ||
| 22 | // ------------------------------- | 22 | // ------------------------------- |
| 23 | // page start | 23 | // page start |
lib/SiteMap.inc renamed to lib/session/SiteMap.inc