mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 04:52:14 +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
|
else
|
||||||
{
|
{
|
||||||
$total = count($value);
|
foreach($value as $key=>$val)
|
||||||
for($i = 0; $i < $total; $i++)
|
|
||||||
{
|
{
|
||||||
$value[$i] = $this->_escapeStringValue($value[$i]);
|
$value[$key] = $this->_escapeStringValue($val);
|
||||||
}
|
}
|
||||||
//$value[$i] = '\''.$value[$i].'\'';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if($this->uses_default_value)
|
if($this->uses_default_value)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue