From: <var...@us...> - 2014-11-18 17:15:18
|
Revision: 9333 http://sourceforge.net/p/phpwiki/code/9333 Author: vargenau Date: 2014-11-18 17:15:15 +0000 (Tue, 18 Nov 2014) Log Message: ----------- Do not use void function result Modified Paths: -------------- trunk/lib/Request.php Modified: trunk/lib/Request.php =================================================================== --- trunk/lib/Request.php 2014-11-18 17:12:05 UTC (rev 9332) +++ trunk/lib/Request.php 2014-11-18 17:15:15 UTC (rev 9333) @@ -511,12 +511,12 @@ unset($val->_HomePagehandle); unset($val->_auth_dbi); } - return $this->session->set($key, $val); + $this->session->set($key, $val); } function deleteSessionVar($key) { - return $this->session->delete($key); + $this->session->delete($key); } function getCookieVar($key) @@ -526,12 +526,12 @@ function setCookieVar($key, $val, $lifetime_in_days = false, $path = false) { - return $this->cookies->set($key, $val, $lifetime_in_days, $path); + $this->cookies->set($key, $val, $lifetime_in_days, $path); } function deleteCookieVar($key) { - return $this->cookies->delete($key); + $this->cookies->delete($key); } function getUploadedFile($key) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |