GetSimple v2.0; admin/components.php, line 55:
I should think so, its right part of code:
before:
I should think so, its right part of code:
Code:
$ct = 0; $coArray = array();
foreach ($ids as $id)
{
if ( ($title[$ct] != null) && ($value[$ct] != null) )
{
if ( $slug[$ct] == null )
{
$slug_tmp = to7bit($title[$ct], 'UTF-8');
$slug[$ct] = clean_url($slug_tmp);
$slug_tmp = '';
}
$coArray[$ct]['id'] = $ids[$ct];
$coArray[$ct]['title'] = htmlentities($title[$ct], ENT_QUOTES, 'UTF-8');
$coArray[$ct]['slug'] = $slug[$ct];
$coArray[$ct]['value'] = htmlentities($value[$ct], ENT_QUOTES, 'UTF-8');
}
$ct++;
}
before:
Code:
$coArray[$ct]['id'] = $id[$ct];