ciao toni
io diciamo ho risolto modificando il mod_search.php
guardando il file xml dove puntava il richiamo
in questo modo
originale
$upper_limit = $lang->getUpperLimitSearchWord();
$button = $params->get('button', '');
$imagebutton = $params->get('imagebutton', '');
$button_pos = $params->get('button_pos', 'left');
$button_text = htmlspecialchars($params->get('button_text', JText::_('MOD_SEARCH_SEARCHBUTTON_TEXT')));
$width = intval($params->get('width', 20));
$maxlength = $upper_limit;
$text = htmlspecialchars($params->get('text', JText::_('MOD_SEARCH_SEARCHBOX_TEXT')));
$label = htmlspecialchars($params->get('label', JText::_('MOD_SEARCH_LABEL_TEXT')));
$set_Itemid = intval($params->get('set_itemid', 0));
$moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'));
modificato
$upper_limit = $lang->getUpperLimitSearchWord();
$button = $params->get('button', '');
$imagebutton = $params->get('imagebutton', '');
$button_pos = $params->get('button_pos', 'left');
$button_text = htmlspecialchars($params->get('button_text', JText::_('MOD_SEARCH_SEARCHBUTTON_TEXT')));
$width = intval($params->get('width', 20));
$maxlength = $upper_limit;
$maxlength = $width; // aumentare limite caratteri del search dal mudulo
$text = htmlspecialchars($params->get('text', JText::_('MOD_SEARCH_SEARCHBOX_TEXT')));
$label = htmlspecialchars($params->get('label', JText::_('MOD_SEARCH_LABEL_TEXT')));
$set_Itemid = intval($params->get('set_itemid', 0));
$moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'));
in questo modo il modulo cerca funziona col numero caratteri che si mettono.
oh aggiunto
$maxlength = $width; // aumentare limite caratteri del search dal mudulo