diff --git a/administrator/components/com_joomlaupdate/restore.php b/administrator/components/com_joomlaupdate/restore.php index 04386b631e55b..cca291cfb3ab2 100644 --- a/administrator/components/com_joomlaupdate/restore.php +++ b/administrator/components/com_joomlaupdate/restore.php @@ -1439,6 +1439,11 @@ public function process() @touch($this->filename, $this->timestamp); } + if (substr($this->filename, -4) === '.php') + { + $this->clearFileInOPCache($this->filename); + } + return true; }