Forums
(@egloeckle)
13 years, 3 months ago
There is a bug in the post.php file causing buttons to not work properly.
Line 159: $design_buttons = ksort($temp);
$design_buttons = ksort($temp);
Should be: ksort($temp); $design_buttons = $temp;
ksort($temp);
$design_buttons = $temp;
As ksort returns a bool value (and not the sorted array).