mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-25 13:22:16 +09:00
#18416078 fix receive blogapi when useing vid
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6911 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
7a557ee42f
commit
ad8fcbef4f
2 changed files with 2 additions and 14 deletions
|
|
@ -647,11 +647,10 @@
|
|||
* @brief GET/POST방식일 경우 처리
|
||||
**/
|
||||
function _setRequestArgument() {
|
||||
if($this->_getRequestMethod() == 'XMLRPC' || $this->_getRequestMethod() == 'JSON') return;
|
||||
if(!count($_REQUEST)) return;
|
||||
|
||||
foreach($_REQUEST as $key => $val) {
|
||||
if($val === "") continue;
|
||||
if($val === "" || Context::get($key)) continue;
|
||||
$val = $this->_filterRequestVar($key, $val);
|
||||
if($this->_getRequestMethod()=='GET'&&isset($_GET[$key])) $set_to_vars = true;
|
||||
elseif($this->_getRequestMethod()=='POST'&&isset($_POST[$key])) $set_to_vars = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue