From: <var...@us...> - 2015-05-12 14:32:48
|
Revision: 9697 http://sourceforge.net/p/phpwiki/code/9697 Author: vargenau Date: 2015-05-12 14:32:46 +0000 (Tue, 12 May 2015) Log Message: ----------- Avoid warning Modified Paths: -------------- trunk/lib/imagecache.php trunk/lib/main.php Modified: trunk/lib/imagecache.php =================================================================== --- trunk/lib/imagecache.php 2015-05-07 08:48:22 UTC (rev 9696) +++ trunk/lib/imagecache.php 2015-05-12 14:32:46 UTC (rev 9697) @@ -77,7 +77,7 @@ } if ($userid = $request->getCookieVar(getCookieName())) { if (!empty($userid) and substr($userid, 0, 2) != 's:') { - $request->_user->authhow = 'cookie'; + $request->_user->_authhow = 'cookie'; return $userid; } } Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2015-05-07 08:48:22 UTC (rev 9696) +++ trunk/lib/main.php 2015-05-12 14:32:46 UTC (rev 9697) @@ -998,7 +998,7 @@ if ($userid = $this->getCookieVar(getCookieName())) { if (!empty($userid) and substr($userid, 0, 2) != 's:') { - $this->_user->authhow = 'cookie'; + $this->_user->_authhow = 'cookie'; return $userid; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |