o mio dio...
mentre facevo l'update del sito mi esce questo errore:
SearchApiException: Unknown or invalid item type node. in search_api_get_datasource_controller() (line 1334 of /Applications/MAMP/htdocs/ufficio/profiles/panopoly/modules/contrib/search_api/search_api.module)
il codice nel file è il seguente:
function search_api_get_datasource_controller($type) {
$datasources = &drupal_static(__FUNCTION__, array());
if (empty($datasources[$type])) {
$info = search_api_get_item_type_info($type);
if (isset($info['datasource controller']) && class_exists($info['datasource controller'])) {
$datasources[$type] = new $info['datasource controller']($type);
}
if (empty($datasources[$type]) || !($datasources[$type] instanceof SearchApiDataSourceControllerInterface)) {
unset($datasources[$type]);
throw new SearchApiException(t('Unknown or invalid item type @type.', array('@type' => $type)));
}
}
return $datasources[$type];
}
dov'è il problema?