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