Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv23313
Modified Files:
WikiUser.php
Log Message:
Fixed typo: missing underscore on _request
Index: WikiUser.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/WikiUser.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -2 -b -p -d -r1.18 -r1.19
--- WikiUser.php 23 Aug 2002 21:54:30 -0000 1.18
+++ WikiUser.php 24 Aug 2002 22:09:14 -0000 1.19
@@ -250,5 +250,5 @@ class WikiUser {
// and get the preferences from the db or page.
if (!($prefs = $this->_request->getCookieVar('WIKI_PREFS2')))
- $prefs = $this->request->getSessionVar('wiki_prefs');
+ $prefs = $this->_request->getSessionVar('wiki_prefs');
if (!$this->_userid and !empty($GLOBALS['HTTP_COOKIE_VARS']['WIKI_ID'])) {
|