Hi,
Could someone fix an incorrect variable name on lines 206 and 210 of Fuel\Core\DBUtil
$columns needs changing to $index_name
Corrected lines should read:
$index_name .= ($index_name=='' ? '' : '_').$value; // Line 206
$index_name .= ($index_name=='' ? '' : '_').str_replace(array('(', ')', ' '), '', $key); // Line 210
Thanks,
Richard