I just upgraded to 4.7 and I am very happy with it.
everything works fine exept one thing.
I used image_import a lot and it worked good with 4.6
After the upgrade i could not go to settings/image_import so i downloaded the latest image_import.module from CVS and it looked OK. But when I finally come to settings/image_import and open the page everything I see ist "Array".
This is the hook_settings function from image_import:
function image_import_settings() {
// First, check the status of the directory path and report any problems
_image_import_check_settings(FALSE, 'image_import_default_import_path');
$form = array();
$form['file_path'] = array(
'#type' => 'fieldset',
'#title' => t('File path settings'),
'#description' => t('These settings control the path on the server from which image and caption files will be imported. You can put the string <code>%u</code> or <code>%U</code> in the path fields, and these strings will be replaced by the username of the person doing the import. %U and %u are the same except that %U automatically removes space, %, <, >, *, /, \, and ? from the username.'),
'#tree' => FALSE,
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['file_path']['image_import_default_import_path'] = array(
'#type' => 'textfield',
'#title' => t('Default import path'),