﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
19945,Bug in ../wp-includes/widgets.php,Barti112,Barti112,"in this file there are at some places the following code:

$widget = array_merge($widget, $options);

it is possible that $options is not an array and i become a php-warning.

i think better is to check the arrays before you use this function:

if(is_array($widget) && is_array($options)){
  $widget = array_merge($widget, $options);
}
",defect (bug),new,normal,Awaiting Review,Widgets,3.3.1,normal,,reporter-feedback,info1@… kpayne@…
