Skip to content

Commit

Permalink
Fix 17959: Upgrade unattended produces a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vboctor committed Dec 13, 2014
1 parent 82afaec commit eb44011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/install_helper_functions_api.php
Expand Up @@ -458,7 +458,7 @@ function install_stored_filter_migrate() {
$t_filter_arr = unserialize( $t_setting_arr[1] );
break;
default:
$t_filter_arr = json_decode( $t_setting_arr[1] );
$t_filter_arr = json_decode( $t_setting_arr[1], /* assoc array */ true );
}
} else {
$t_delete_query = 'DELETE FROM {filters} WHERE id=' . db_param();
Expand Down

0 comments on commit eb44011

Please sign in to comment.