Hello everyone, I’m trying to update the OFFLINE.SiteSearch plugin from version 1.7.21 to version 1.7.22. I click on Check for Updates, the system informs me that updates have been found, I click on update, the update process runs normally, but in the end the version remains 1.7.21, has anyone else had difficulties updating?
Hi @Valente,
I don’t think that’s the case, but is the version in composer.json
locked to 1.7.21
?
Even if it visually shows 1.7.21
, could you check classes/providers/CmsPagesResultsProvider.php
to see if it contains the following?
protected function containsQuery($subject)
{
return mb_strpos(mb_strtolower($subject), mb_strtolower($this->query)) !== false;
}
Hi @apinard,
I looked at the contents of the classes/providers/CmsPagesResultsProvider.php file and it contains this.