From: <jhe...@us...> - 2002-11-14 10:59:16
|
Update of /cvsroot/upcase-project/UpCase/lib In directory usw-pr-cvs1:/tmp/cvs-serv18737 Modified Files: uc_config.php Log Message: renamed config paths Index: uc_config.php =================================================================== RCS file: /cvsroot/upcase-project/UpCase/lib/uc_config.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** uc_config.php 5 Aug 2002 08:21:07 -0000 1.2 --- uc_config.php 14 Nov 2002 10:59:13 -0000 1.3 *************** *** 12,16 **** * @access public */ ! var $wwwRoot; /** --- 12,16 ---- * @access public */ ! var $upcaseUrl; /** *************** *** 20,24 **** * @access public */ ! var $filesRoot; /** --- 20,24 ---- * @access public */ ! var $upcaseRoot; /** *************** *** 28,32 **** * @access public */ ! var $wwwModules; /** --- 28,32 ---- * @access public */ ! var $siteUrl; /** *************** *** 36,40 **** * @access public */ ! var $modulesRoot; /** --- 36,40 ---- * @access public */ ! var $siteRoot; /** *************** *** 72,87 **** $pathNode = $ar[0]; ! $ar = $pathNode->getElements("rooturl"); ! $this->wwwRoot = $ar[0]->textElements[0]; - - $ar = $pathNode->getElements("modsurl"); - $this->wwwModules = $ar[0]->textElements[0]; - - $ar = $pathNode->getElements("docroot"); - $this->filesRoot = $ar[0]->textElements[0]; - - $ar = $pathNode->getElements("modules"); - $this->modulesRoot = $ar[0]->textElements[0]; $ar = $tree->getElements("languages"); --- 72,84 ---- $pathNode = $ar[0]; ! $ar = $pathNode->getElements("siteroot"); ! $this->siteRoot = $ar[0]->textElements[0]; ! $ar = $pathNode->getElements("siteurl"); ! $this->siteUrl = $ar[0]->textElements[0]; ! $ar = $pathNode->getElements("upcaseroot"); ! $this->upcaseRoot = $ar[0]->textElements[0]; ! $ar = $pathNode->getElements("upcaseurl"); ! $this->upcaseUrl = $ar[0]->textElements[0]; $ar = $tree->getElements("languages"); |