PHP Deprecated: Function create_function() is deprecated in /home/smithikakart/public_html/modules/spstepcheckout/spstepcheckout.php on line 3221
Fixed by changing this line 3221
From :
{
usort($array, create_function('$a, $b', '
$a = $a["' . $field . '"];
$b = $b["' . $field . '"];
if ($a == $b) return 0;
return ($a < $b) ? -1 : 1;
'));
return true;
}
To
{
usort($array, function($a, $b){
$a = $a["' . $field . '"];
$b = $b["' . $field . '"];
if ($a == $b) return 0;
return ($a < $b) ? -1 : 1;
} );
return true;
}