From: <var...@us...> - 2021-09-20 10:37:44
|
Revision: 10586 http://sourceforge.net/p/phpwiki/code/10586 Author: vargenau Date: 2021-09-20 10:37:42 +0000 (Mon, 20 Sep 2021) Log Message: ----------- function WikiUser has only one argument Modified Paths: -------------- trunk/lib/main.php Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2021-09-20 10:32:58 UTC (rev 10585) +++ trunk/lib/main.php 2021-09-20 10:37:42 UTC (rev 10586) @@ -117,7 +117,7 @@ or (strtolower(get_class($this->_user)) == '_passuser') or (strtolower(get_class($this->_user)) == '_fusionforgepassuser')) ) { - $this->_user = WikiUser($userid, $this->_user->_prefs); + $this->_user = WikiUser($userid); } // revive other db handle if (isset($this->_user->_prefs->_method) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |