mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
Context에서 get으로 넘길 때 0체크
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4457 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e8c3a4ff85
commit
513bb224ba
1 changed files with 1 additions and 1 deletions
|
|
@ -496,7 +496,7 @@
|
||||||
if(get_magic_quotes_gpc()) $val = stripslashes($val);
|
if(get_magic_quotes_gpc()) $val = stripslashes($val);
|
||||||
$val = trim($val);
|
$val = trim($val);
|
||||||
}
|
}
|
||||||
if(!$val) continue;
|
if(!isset($val)) continue;
|
||||||
|
|
||||||
if($this->_getRequestMethod()=='GET'&&$_GET[$key]) $set_to_vars = true;
|
if($this->_getRequestMethod()=='GET'&&$_GET[$key]) $set_to_vars = true;
|
||||||
elseif($this->_getRequestMethod()=='POST'&&$_POST[$key]) $set_to_vars = true;
|
elseif($this->_getRequestMethod()=='POST'&&$_POST[$key]) $set_to_vars = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue