Skip to content

Commit

Permalink
[4.1] Joomla Update Component update site (joomla#37505)
Browse files Browse the repository at this point in the history
* new

* updates

* Update 4.1.3-2022-04-08.sql

* Update 4.1.3-2022-04-08.sql
  • Loading branch information
brianteeman authored Apr 8, 2022
1 parent ba34961 commit 939488f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
UPDATE `#__update_sites`
SET `name` = 'Joomla! Update Component'
WHERE `name` = 'Joomla! Update Component Update Site';
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
UPDATE "#__update_sites"
SET "name" = 'Joomla! Update Component'
WHERE "name" = 'Joomla! Update Component Update Site';
2 changes: 1 addition & 1 deletion administrator/components/com_joomlaupdate/joomlaupdate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
</languages>
</administration>
<updateservers>
<server type="extension" name="Joomla! Update Component Update Site">https://update.joomla.org/core/extensions/com_joomlaupdate.xml</server>
<server type="extension" name="Joomla! Update Component">https://update.joomla.org/core/extensions/com_joomlaupdate.xml</server>
</updateservers>
</extension>
2 changes: 1 addition & 1 deletion installation/sql/mysql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ CREATE TABLE IF NOT EXISTS `#__update_sites` (
INSERT INTO `#__update_sites` (`update_site_id`, `name`, `type`, `location`, `enabled`, `last_check_timestamp`) VALUES
(1, 'Joomla! Core', 'collection', 'https://update.joomla.org/core/list.xml', 1, 0),
(2, 'Accredited Joomla! Translations', 'collection', 'https://update.joomla.org/language/translationlist_4.xml', 1, 0),
(3, 'Joomla! Update Component Update Site', 'extension', 'https://update.joomla.org/core/extensions/com_joomlaupdate.xml', 1, 0);
(3, 'Joomla! Update Component', 'extension', 'https://update.joomla.org/core/extensions/com_joomlaupdate.xml', 1, 0);

-- --------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion installation/sql/postgresql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ COMMENT ON TABLE "#__update_sites" IS 'Update Sites';
INSERT INTO "#__update_sites" ("update_site_id", "name", "type", "location", "enabled", "last_check_timestamp") VALUES
(1, 'Joomla! Core', 'collection', 'https://update.joomla.org/core/list.xml', 1, 0),
(2, 'Accredited Joomla! Translations', 'collection', 'https://update.joomla.org/language/translationlist_4.xml', 1, 0),
(3, 'Joomla! Update Component Update Site', 'extension', 'https://update.joomla.org/core/extensions/com_joomlaupdate.xml', 1, 0);
(3, 'Joomla! Update Component', 'extension', 'https://update.joomla.org/core/extensions/com_joomlaupdate.xml', 1, 0);

SELECT setval('#__update_sites_update_site_id_seq', 4, false);

Expand Down

0 comments on commit 939488f

Please sign in to comment.