diff --git a/administrator/components/com_installer/models/update.php b/administrator/components/com_installer/models/update.php index 6daa4d07d8c09..d3fd136ffd848 100644 --- a/administrator/components/com_installer/models/update.php +++ b/administrator/components/com_installer/models/update.php @@ -292,6 +292,10 @@ public function purge() ->set($db->quoteName('last_check_timestamp') . ' = ' . $db->quote(0)); $db->setQuery($query); $db->execute(); + + // Clear the administrator cache + $this->cleanCache('_system', 1); + $this->_message = JText::_('JLIB_INSTALLER_PURGED_UPDATES'); return true;