mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-11 23:01:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@381 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6bc4697406
commit
1a0f41adcd
12 changed files with 188 additions and 51 deletions
|
|
@ -431,8 +431,15 @@
|
|||
* @brief 요청받은 url에 args_list를 적용하여 return
|
||||
**/
|
||||
function _getUrl($num_args, $args_list) {
|
||||
if(!is_object($this->get_vars)) $get_vars = null;
|
||||
else $get_vars = clone($this->get_vars);
|
||||
if(!is_object($this->get_vars) || $args_list[0]=='') {
|
||||
$get_vars = null;
|
||||
if($args_list[0]=='') {
|
||||
array_shift($args_list);
|
||||
$num_args = count($args_list);
|
||||
}
|
||||
} else {
|
||||
$get_vars = clone($this->get_vars);
|
||||
}
|
||||
|
||||
for($i=0;$i<$num_args;$i=$i+2) {
|
||||
$key = $args_list[$i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue