From: <jhe...@us...> - 2002-11-22 13:34:23
|
Update of /cvsroot/upcase-project/UpCase/lib In directory sc8-pr-cvs1:/tmp/cvs-serv14955 Modified Files: uc_page.php Log Message: give the whole URI to the session object Index: uc_page.php =================================================================== RCS file: /cvsroot/upcase-project/UpCase/lib/uc_page.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** uc_page.php 12 Nov 2002 13:51:59 -0000 1.3 --- uc_page.php 22 Nov 2002 13:34:20 -0000 1.4 *************** *** 24,30 **** $ar = parse_url($REQUEST_URI); $this->path = $ar["path"]; // Open the session ! $this->session = new UcSession($this->path); $this->session->lang = $ucConfig->defaultlang; --- 24,31 ---- $ar = parse_url($REQUEST_URI); $this->path = $ar["path"]; + $this->uri = $REQUEST_URI; // Open the session ! $this->session = new UcSession($this->uri); $this->session->lang = $ucConfig->defaultlang; |