mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
#862 escapeValue()에서 foreach로 처리되록 수정
This commit is contained in:
parent
791149f029
commit
26427a8967
1 changed files with 396 additions and 398 deletions
|
|
@ -183,12 +183,10 @@ class Argument
|
|||
}
|
||||
else
|
||||
{
|
||||
$total = count($value);
|
||||
for($i = 0; $i < $total; $i++)
|
||||
foreach($value as $key=>$val)
|
||||
{
|
||||
$value[$i] = $this->_escapeStringValue($value[$i]);
|
||||
$value[$key] = $this->_escapeStringValue($val);
|
||||
}
|
||||
//$value[$i] = '\''.$value[$i].'\'';
|
||||
}
|
||||
}
|
||||
if($this->uses_default_value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue