Commit 9ad392829f959db4ef93f83ae9e2e25b6db2516f

Authored by michael
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
config/dmsDefaults.php
... ... @@ -127,7 +127,7 @@ $default->owl_timeout = 1200;
127 127 $default->debug = True;
128 128  
129 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 131 $default->siteMap = new SiteMap();
132 132 // action, section, page, userClass (SA, UA, U, A)
133 133 $default->siteMap->addPage("login", "/login.php?loginAction=login", "General", "Anonymous");
... ...
control.php
... ... @@ -17,7 +17,7 @@
17 17  
18 18 // main library routines and defaults
19 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 23 // page start
... ...
lib/SiteMap.inc renamed to lib/session/SiteMap.inc