diff --git a/administrator/components/com_joomlaupdate/Model/UpdateModel.php b/administrator/components/com_joomlaupdate/Model/UpdateModel.php index 8aae04b1a8c5f..e72ff58c45bb5 100644 --- a/administrator/components/com_joomlaupdate/Model/UpdateModel.php +++ b/administrator/components/com_joomlaupdate/Model/UpdateModel.php @@ -63,12 +63,12 @@ public function applyUpdateSite() // "Minor & Patch Release for Current version AND Next Major Release". case 'sts': case 'next': - $updateURL = 'https://update.joomla.org/core/test/next_major_list.xml'; + $updateURL = 'https://update.joomla.org/core/sts/list_sts.xml'; break; // "Testing" case 'testing': - $updateURL = 'https://update.joomla.org/core/test/next_major_list.xml'; + $updateURL = 'https://update.joomla.org/core/test/list_test.xml'; break; // "Custom" @@ -92,7 +92,7 @@ public function applyUpdateSite() * case 'nochange': */ default: - $updateURL = 'https://update.joomla.org/core/test/next_major_list.xml'; + $updateURL = 'https://update.joomla.org/core/list.xml'; } $db = $this->getDbo();