Search error

Hi when I tried to search a contact receive this messajein all central frame

Usar búsqueda básica Notice: Undefined index: default in F:\SuiteCRM\modules\Home\UnifiedSearch.php on line 174 Notice: Undefined index: default in F:\SuiteCRM\modules\Home\UnifiedSearch.php on line 174

foreach ($listViewDefs[$bean->module_dir] as $key => $entry) {
    if (!$entry['default']) {
        continue;
    }
    $key = strtolower($key);

I’m using Suite CRM
Versión 7.10.9
Sugar Versión 6.5.25 (Compilación 344)
PHP version 7.0.32
MYSQLServer 5.7

Hosted in Azure over Windows 2008 R2 Datecenter

It’s a good practice to always disable

display_errors

in your php.ini, so your PHP messages won’t go on screen. Many of these messages are safe to ignore, any way. Namely those “Notice” ones.

Then you should keep an eye on your logs for anything relevant (ERROR or FATAL level).