From: <var...@us...> - 2014-10-14 12:20:14
|
Revision: 9259 http://sourceforge.net/p/phpwiki/code/9259 Author: vargenau Date: 2014-10-14 12:20:10 +0000 (Tue, 14 Oct 2014) Log Message: ----------- Add private Modified Paths: -------------- trunk/lib/Request.php Modified: trunk/lib/Request.php =================================================================== --- trunk/lib/Request.php 2014-10-14 12:14:19 UTC (rev 9258) +++ trunk/lib/Request.php 2014-10-14 12:20:10 UTC (rev 9259) @@ -539,7 +539,7 @@ return Request_UploadedFile::getUploadedFile($key); } - function _stripslashes(&$var) + private function _stripslashes(&$var) { if (is_array($var)) { foreach ($var as $key => $val) @@ -548,13 +548,13 @@ $var = stripslashes($var); } - function _fix_multipart_form_data() + private function _fix_multipart_form_data() { if (preg_match('|^multipart/form-data|', $this->get('CONTENT_TYPE'))) $this->_strip_leading_nl($GLOBALS['HTTP_POST_VARS']); } - function _strip_leading_nl(&$var) + private function _strip_leading_nl(&$var) { if (is_array($var)) { foreach ($var as $key => $val) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |