mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 21:12:15 +09:00
Fix undefined array in ExtraItem class
This commit is contained in:
parent
87f0a258eb
commit
055fd49e40
1 changed files with 4 additions and 0 deletions
|
|
@ -224,6 +224,10 @@ class ExtraItem
|
||||||
{
|
{
|
||||||
$values = explode(',', $value);
|
$values = explode(',', $value);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$values = array($value);
|
||||||
|
}
|
||||||
|
|
||||||
$values = array_values($values);
|
$values = array_values($values);
|
||||||
for($i = 0, $c = count($values); $i < $c; $i++)
|
for($i = 0, $c = count($values); $i < $c; $i++)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue