1 dbc Jan 15, 2012 20:12
3 dbc Jan 16, 2012 16:36
Thanks for answer but not sure of what need to do, reading the thread there is two things to do ? sorry and thanks for your time.
4 sam2kb Jan 19, 2012 01:23
Just apply the following changes
Add this to the end of /inc/_core/_misc.funcs.php
if( ! function_exists('array_combine') )
{
// Floats are casted to strings to avoid overwriting
function array_combine( $arr1, $arr2 )
{
$out = array();
$arr1 = array_values($arr1);
$arr2 = array_values($arr2);
foreach( $arr1 as $key1 => $value1 )
{
$out[(string)$value1] = $arr2[$key1];
}
return $out;
}
}
http://forums.b2evolution.net/viewtopic.php?p=111268#111268