From 3c2c16af22aec090883015090b7484dfcc2dc37b Mon Sep 17 00:00:00 2001 From: alikon Date: Sun, 13 Oct 2024 12:16:21 +0200 Subject: [PATCH 01/12] newarticle2mailtemplate --- .../sql/updates/mysql/5.3.0-2024-10-14.sql | 2 + .../updates/postgresql/5.3.0-2024-10-14.sql | 2 + .../language/en-GB/plg_content_joomla.ini | 4 ++ installation/sql/mysql/supports.sql | 3 +- installation/sql/postgresql/supports.sql | 3 +- .../content/joomla/src/Extension/Joomla.php | 49 ++++++++++++------- 6 files changed, 43 insertions(+), 20 deletions(-) create mode 100644 administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-14.sql create mode 100644 administrator/components/com_admin/sql/updates/postgresql/5.3.0-2024-10-14.sql diff --git a/administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-14.sql b/administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-14.sql new file mode 100644 index 0000000000000..88870f1196465 --- /dev/null +++ b/administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-14.sql @@ -0,0 +1,2 @@ +INSERT INTO `#__mail_templates` (`template_id`, `extension`, `language`, `subject`, `body`, `htmlbody`, `attachments`, `params`) VALUES +('plg_content_joomla.newarticle', 'plg_content_joomla', '', 'PLG_CONTENT_JOOMLA_NEW_ARTICLE_SUBJECT', 'PLG_CONTENT_JOOMLA_NEW_ARTICLE_BODY', '', '', '{"tags":["sitename","name","email","title","url"]}'); diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.3.0-2024-10-14.sql b/administrator/components/com_admin/sql/updates/postgresql/5.3.0-2024-10-14.sql new file mode 100644 index 0000000000000..0fcab19b08774 --- /dev/null +++ b/administrator/components/com_admin/sql/updates/postgresql/5.3.0-2024-10-14.sql @@ -0,0 +1,2 @@ +INSERT INTO "#__mail_templates" ("template_id", "extension", "language", "subject", "body", "htmlbody", "attachments", "params") VALUES +('plg_content_joomla.newarticle', 'plg_content_joomla', '', 'PLG_CONTENT_JOOMLA_NEW_ARTICLE_SUBJECT', 'PLG_CONTENT_JOOMLA_NEW_ARTICLE_BODY', '', '', '{"tags":["sitename","name","email","title","url"]}'); diff --git a/administrator/language/en-GB/plg_content_joomla.ini b/administrator/language/en-GB/plg_content_joomla.ini index 5b818a07e48e6..2444348e2ed77 100644 --- a/administrator/language/en-GB/plg_content_joomla.ini +++ b/administrator/language/en-GB/plg_content_joomla.ini @@ -8,6 +8,10 @@ PLG_CONTENT_JOOMLA_FIELD_CHECK_CATEGORIES_DESC="Check that categories are fully PLG_CONTENT_JOOMLA_FIELD_CHECK_CATEGORIES_LABEL="Check Category Deletion" PLG_CONTENT_JOOMLA_FIELD_EMAIL_NEW_FE_DESC="Email users if 'Send email' is on when there is a new article submitted via the Frontend." PLG_CONTENT_JOOMLA_FIELD_EMAIL_NEW_FE_LABEL="Email on New Site Article" +PLG_CONTENT_JOOMLA_MAIL_NEWARTICLE_DESC="Sent when a new article i submitted via frontend" +PLG_CONTENT_JOOMLA_MAIL_NEWARTICLE_TITLE="Content: New Article Submitted" +PLG_CONTENT_JOOMLA_NEW_ARTICLE_BODY="A new Article has been submitted by {NAME} entitled {TITLE}." +PLG_CONTENT_JOOMLA_NEW_ARTICLE_SUBJECT="[{SITENAME}] - New Article Submitted" PLG_CONTENT_JOOMLA_SCHEMA_CONTACT_DESC="When active, generate contact rich snippets from the default data" PLG_CONTENT_JOOMLA_SCHEMA_CONTACT_LABEL="Contact Schema" PLG_CONTENT_JOOMLA_SCHEMA_CONTENT_DESC="When active, generate content rich snippets from the default data" diff --git a/installation/sql/mysql/supports.sql b/installation/sql/mysql/supports.sql index fdfd982e81ce0..c86f0d2fecbcf 100644 --- a/installation/sql/mysql/supports.sql +++ b/installation/sql/mysql/supports.sql @@ -437,4 +437,5 @@ INSERT INTO `#__mail_templates` (`template_id`, `extension`, `language`, `subjec ('plg_system_tasknotification.fatal_recovery_mail', 'plg_system_tasknotification', '', 'PLG_SYSTEM_TASK_NOTIFICATION_FATAL_MAIL_SUBJECT', 'PLG_SYSTEM_TASK_NOTIFICATION_FATAL_MAIL_BODY', '', '', '{"tags": ["task_id", "task_title"]}'), ('plg_system_tasknotification.orphan_mail', 'plg_system_tasknotification', '', 'PLG_SYSTEM_TASK_NOTIFICATION_ORPHAN_MAIL_SUBJECT', 'PLG_SYSTEM_TASK_NOTIFICATION_ORPHAN_MAIL_BODY', '', '', '{"tags": ["task_id", "task_title"]}'), ('plg_system_tasknotification.success_mail', 'plg_system_tasknotification', '', 'PLG_SYSTEM_TASK_NOTIFICATION_SUCCESS_MAIL_SUBJECT', 'PLG_SYSTEM_TASK_NOTIFICATION_SUCCESS_MAIL_BODY', '', '', '{"tags":["task_id", "task_title", "exec_data_time", "task_output"]}'), -('plg_multifactorauth_email.mail', 'plg_multifactorauth_email', '', 'PLG_MULTIFACTORAUTH_EMAIL_EMAIL_SUBJECT', 'PLG_MULTIFACTORAUTH_EMAIL_EMAIL_BODY', '', '', '{"tags":["code","sitename","siteurl","username","email","fullname"]}'); +('plg_multifactorauth_email.mail', 'plg_multifactorauth_email', '', 'PLG_MULTIFACTORAUTH_EMAIL_EMAIL_SUBJECT', 'PLG_MULTIFACTORAUTH_EMAIL_EMAIL_BODY', '', '', '{"tags":["code","sitename","siteurl","username","email","fullname"]}'), +('plg_content_joomla.newarticle', 'plg_content_joomla', '', 'PLG_CONTENT_JOOMLA_NEW_ARTICLE_SUBJECT', 'PLG_CONTENT_JOOMLA_NEW_ARTICLE_BODY', '', '', '{"tags":["sitename","name","email","title","url"]}'); diff --git a/installation/sql/postgresql/supports.sql b/installation/sql/postgresql/supports.sql index fb6571f6f951b..8e7c377e97972 100644 --- a/installation/sql/postgresql/supports.sql +++ b/installation/sql/postgresql/supports.sql @@ -448,4 +448,5 @@ INSERT INTO "#__mail_templates" ("template_id", "extension", "language", "subjec ('plg_system_tasknotification.fatal_recovery_mail', 'plg_system_tasknotification', '', 'PLG_SYSTEM_TASK_NOTIFICATION_FATAL_MAIL_SUBJECT', 'PLG_SYSTEM_TASK_NOTIFICATION_FATAL_MAIL_BODY', '', '', '{"tags": ["task_id", "task_title"]}'), ('plg_system_tasknotification.orphan_mail', 'plg_system_tasknotification', '', 'PLG_SYSTEM_TASK_NOTIFICATION_ORPHAN_MAIL_SUBJECT', 'PLG_SYSTEM_TASK_NOTIFICATION_ORPHAN_MAIL_BODY', '', '', '{"tags": ["task_id", "task_title"]}'), ('plg_system_tasknotification.success_mail', 'plg_system_tasknotification', '', 'PLG_SYSTEM_TASK_NOTIFICATION_SUCCESS_MAIL_SUBJECT', 'PLG_SYSTEM_TASK_NOTIFICATION_SUCCESS_MAIL_BODY', '', '', '{"tags":["task_id", "task_title", "exec_data_time", "task_output"]}'), -('plg_multifactorauth_email.mail', 'plg_multifactorauth_email', '', 'PLG_MULTIFACTORAUTH_EMAIL_EMAIL_SUBJECT', 'PLG_MULTIFACTORAUTH_EMAIL_EMAIL_BODY', '', '', '{"tags":["code","sitename","siteurl","username","email","fullname"]}'); +('plg_multifactorauth_email.mail', 'plg_multifactorauth_email', '', 'PLG_MULTIFACTORAUTH_EMAIL_EMAIL_SUBJECT', 'PLG_MULTIFACTORAUTH_EMAIL_EMAIL_BODY', '', '', '{"tags":["code","sitename","siteurl","username","email","fullname"]}'), +('plg_content_joomla.newarticle', 'plg_content_joomla', '', 'PLG_CONTENT_JOOMLA_NEW_ARTICLE_SUBJECT', 'PLG_CONTENT_JOOMLA_NEW_ARTICLE_BODY', '', '', '{"tags":["sitename","name","email","title","url"]}'); diff --git a/plugins/content/joomla/src/Extension/Joomla.php b/plugins/content/joomla/src/Extension/Joomla.php index 5e91d7b23e03b..eff3cf8dc9bfd 100644 --- a/plugins/content/joomla/src/Extension/Joomla.php +++ b/plugins/content/joomla/src/Extension/Joomla.php @@ -15,10 +15,15 @@ use Joomla\CMS\Event\Plugin\System\Schemaorg\BeforeCompileHeadEvent; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; -use Joomla\CMS\Language\Language; +use Joomla\CMS\Language\LanguageFactoryInterface; use Joomla\CMS\Language\Text; +use Joomla\CMS\Log\Log; +use Joomla\CMS\Mail\Exception\MailDisabledException; +use Joomla\CMS\Mail\MailTemplate; use Joomla\CMS\Plugin\CMSPlugin; +use Joomla\CMS\Router\Route; use Joomla\CMS\Table\CoreContent; +use Joomla\CMS\String\PunycodeHelper; use Joomla\CMS\Uri\Uri; use Joomla\CMS\User\UserFactoryAwareTrait; use Joomla\CMS\Workflow\WorkflowServiceInterface; @@ -28,6 +33,7 @@ use Joomla\Database\ParameterType; use Joomla\Registry\Registry; use Joomla\Utilities\ArrayHelper; +use PHPMailer\PHPMailer\Exception as phpMailerException; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; @@ -129,26 +135,35 @@ public function onContentAfterSave($context, $article, $isNew): void } $user = $this->getApplication()->getIdentity(); + $this->loadLanguage(); // Messaging for new items - - $default_language = ComponentHelper::getParams('com_languages')->get('administrator'); - $debug = $this->getApplication()->get('debug_lang'); - foreach ($users as $user_id) { if ($user_id != $user->id) { - // Load language for messaging - $receiver = $this->getUserFactory()->loadUserById($user_id); - $lang = Language::getInstance($receiver->getParam('admin_language', $default_language), $debug); - $lang->load('com_content'); - $message = [ - 'user_id_to' => $user_id, - 'subject' => $lang->_('COM_CONTENT_NEW_ARTICLE'), - 'message' => \sprintf($lang->_('COM_CONTENT_ON_NEW_CONTENT'), $user->name, $article->title), + $receiver = $this->getUserFactory()->loadUserById($user_id); + $linkMode = $this->getApplication()->get('force_ssl', 0) == 2 ? Route::TLS_FORCE : Route::TLS_IGNORE; + $templateData = [ + 'sitename' => $this->getApplication()->get('sitename'), + 'name' => $user->name, + 'email' => PunycodeHelper::emailToPunycode($user->email), + 'title' => $article->title, + 'url' => Route::link('administrator', 'index.php?option=com_content&view=articles&filter[search]=id:' . $article->id, false, $linkMode, true), ]; - $model_message = $this->getApplication()->bootComponent('com_messages')->getMVCFactory() - ->createModel('Message', 'Administrator'); - $model_message->save($message); + + // Send email + try { + $mailer = new MailTemplate('plg_content_joomla.newarticle', $receiver->getParam('admin_language', $this->getLanguage()->getTag())); + $mailer->addTemplateData($templateData); + $mailer->addRecipient($receiver->email, $receiver->name); + + $mailer->send(); + } catch (MailDisabledException | phpMailerException $exception) { + try { + Log::add(Text::_($exception->getMessage()), Log::WARNING, 'jerror'); + } catch (\RuntimeException $exception) { + $this->getApplication()->enqueueMessage(Text::_($exception->errorMessage()), 'warning'); + } + } } } } @@ -180,8 +195,6 @@ public function onContentBeforeDelete($context, $data) case 'com_workflow.stage': return $this->stageNotUsed($data->id); } - - return true; } /** From af41078764f85e51109fc454541a203880687633 Mon Sep 17 00:00:00 2001 From: alikon Date: Sun, 13 Oct 2024 12:20:13 +0200 Subject: [PATCH 02/12] synch --- plugins/content/joomla/src/Extension/Joomla.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/content/joomla/src/Extension/Joomla.php b/plugins/content/joomla/src/Extension/Joomla.php index eff3cf8dc9bfd..1cd3a6632b81a 100644 --- a/plugins/content/joomla/src/Extension/Joomla.php +++ b/plugins/content/joomla/src/Extension/Joomla.php @@ -195,6 +195,8 @@ public function onContentBeforeDelete($context, $data) case 'com_workflow.stage': return $this->stageNotUsed($data->id); } + + return true; } /** From 70c36d452d402de79324362ad4a886c7ef1cb495 Mon Sep 17 00:00:00 2001 From: alikon Date: Sun, 13 Oct 2024 12:21:53 +0200 Subject: [PATCH 03/12] clean --- plugins/content/joomla/src/Extension/Joomla.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/content/joomla/src/Extension/Joomla.php b/plugins/content/joomla/src/Extension/Joomla.php index 1cd3a6632b81a..b07f2714578bb 100644 --- a/plugins/content/joomla/src/Extension/Joomla.php +++ b/plugins/content/joomla/src/Extension/Joomla.php @@ -11,11 +11,9 @@ namespace Joomla\Plugin\Content\Joomla\Extension; use Joomla\CMS\Cache\CacheControllerFactory; -use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Event\Plugin\System\Schemaorg\BeforeCompileHeadEvent; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; -use Joomla\CMS\Language\LanguageFactoryInterface; use Joomla\CMS\Language\Text; use Joomla\CMS\Log\Log; use Joomla\CMS\Mail\Exception\MailDisabledException; From 41d1e0b1bb6ac9911a30be3c7548cfef03a131b2 Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Sun, 13 Oct 2024 12:35:35 +0200 Subject: [PATCH 04/12] Update administrator/language/en-GB/plg_content_joomla.ini Co-authored-by: Richard Fath --- administrator/language/en-GB/plg_content_joomla.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/administrator/language/en-GB/plg_content_joomla.ini b/administrator/language/en-GB/plg_content_joomla.ini index 2444348e2ed77..6ef078e4cc78c 100644 --- a/administrator/language/en-GB/plg_content_joomla.ini +++ b/administrator/language/en-GB/plg_content_joomla.ini @@ -8,7 +8,7 @@ PLG_CONTENT_JOOMLA_FIELD_CHECK_CATEGORIES_DESC="Check that categories are fully PLG_CONTENT_JOOMLA_FIELD_CHECK_CATEGORIES_LABEL="Check Category Deletion" PLG_CONTENT_JOOMLA_FIELD_EMAIL_NEW_FE_DESC="Email users if 'Send email' is on when there is a new article submitted via the Frontend." PLG_CONTENT_JOOMLA_FIELD_EMAIL_NEW_FE_LABEL="Email on New Site Article" -PLG_CONTENT_JOOMLA_MAIL_NEWARTICLE_DESC="Sent when a new article i submitted via frontend" +PLG_CONTENT_JOOMLA_MAIL_NEWARTICLE_DESC="Sent when a new article is submitted via frontend." PLG_CONTENT_JOOMLA_MAIL_NEWARTICLE_TITLE="Content: New Article Submitted" PLG_CONTENT_JOOMLA_NEW_ARTICLE_BODY="A new Article has been submitted by {NAME} entitled {TITLE}." PLG_CONTENT_JOOMLA_NEW_ARTICLE_SUBJECT="[{SITENAME}] - New Article Submitted" From 63065094c3e91879ffe4443795771cebafa817a8 Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Sun, 13 Oct 2024 12:35:46 +0200 Subject: [PATCH 05/12] Update plugins/content/joomla/src/Extension/Joomla.php Co-authored-by: Richard Fath --- plugins/content/joomla/src/Extension/Joomla.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/content/joomla/src/Extension/Joomla.php b/plugins/content/joomla/src/Extension/Joomla.php index b07f2714578bb..6e754d5e737b7 100644 --- a/plugins/content/joomla/src/Extension/Joomla.php +++ b/plugins/content/joomla/src/Extension/Joomla.php @@ -20,8 +20,8 @@ use Joomla\CMS\Mail\MailTemplate; use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\Router\Route; -use Joomla\CMS\Table\CoreContent; use Joomla\CMS\String\PunycodeHelper; +use Joomla\CMS\Table\CoreContent; use Joomla\CMS\Uri\Uri; use Joomla\CMS\User\UserFactoryAwareTrait; use Joomla\CMS\Workflow\WorkflowServiceInterface; From 32c6e915dfc2a28636871e18601cf53329a8d188 Mon Sep 17 00:00:00 2001 From: alikon Date: Mon, 14 Oct 2024 11:46:31 +0200 Subject: [PATCH 06/12] lang-string-deprecated --- language/en-GB/com_content.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/language/en-GB/com_content.ini b/language/en-GB/com_content.ini index 981736b228fad..ee35ee3206f30 100644 --- a/language/en-GB/com_content.ini +++ b/language/en-GB/com_content.ini @@ -67,6 +67,7 @@ COM_CONTENT_MORE_ARTICLES="More Articles …" COM_CONTENT_NEW_ARTICLE="New Article" COM_CONTENT_NO_ARTICLES="There are no articles in this category. If subcategories display on this page, they may have articles." COM_CONTENT_NUM_ITEMS="Article Count:" +;Deprecated, will be removed with 6.0 COM_CONTENT_ON_NEW_CONTENT="A new Article has been submitted by '%1$s' entitled '%2$s'." COM_CONTENT_ORDERING="Ordering:
New articles default to the first position in the Category. The ordering can be changed in Backend." COM_CONTENT_PAGEBREAK_DOC_TITLE="Page Break" From c0bac41274523b888ae7f49b42c61df2bc3b2e1b Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Wed, 16 Oct 2024 19:07:28 +0200 Subject: [PATCH 07/12] comment --- plugins/content/joomla/src/Extension/Joomla.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/content/joomla/src/Extension/Joomla.php b/plugins/content/joomla/src/Extension/Joomla.php index 6e754d5e737b7..c3ac77ab54e61 100644 --- a/plugins/content/joomla/src/Extension/Joomla.php +++ b/plugins/content/joomla/src/Extension/Joomla.php @@ -135,7 +135,7 @@ public function onContentAfterSave($context, $article, $isNew): void $user = $this->getApplication()->getIdentity(); $this->loadLanguage(); - // Messaging for new items + // Emailing for new items foreach ($users as $user_id) { if ($user_id != $user->id) { $receiver = $this->getUserFactory()->loadUserById($user_id); From 6b98aa6aebb10652d6e4b3f53323e63bed57e9f7 Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Sun, 23 Feb 2025 18:13:13 +0100 Subject: [PATCH 08/12] Rename 5.3.0-2024-10-14.sql to 5.3.0-2025-02-24.sql --- .../postgresql/{5.3.0-2024-10-14.sql => 5.3.0-2025-02-24.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename administrator/components/com_admin/sql/updates/postgresql/{5.3.0-2024-10-14.sql => 5.3.0-2025-02-24.sql} (100%) diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.3.0-2024-10-14.sql b/administrator/components/com_admin/sql/updates/postgresql/5.3.0-2025-02-24.sql similarity index 100% rename from administrator/components/com_admin/sql/updates/postgresql/5.3.0-2024-10-14.sql rename to administrator/components/com_admin/sql/updates/postgresql/5.3.0-2025-02-24.sql From df9ad0fce37de0688bc8d9ac141443839115bb90 Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Sun, 23 Feb 2025 18:14:22 +0100 Subject: [PATCH 09/12] Rename 5.3.0-2024-10-14.sql to 5.3.0-2025-02-24.sql --- .../updates/mysql/{5.3.0-2024-10-14.sql => 5.3.0-2025-02-24.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename administrator/components/com_admin/sql/updates/mysql/{5.3.0-2024-10-14.sql => 5.3.0-2025-02-24.sql} (100%) diff --git a/administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-14.sql b/administrator/components/com_admin/sql/updates/mysql/5.3.0-2025-02-24.sql similarity index 100% rename from administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-14.sql rename to administrator/components/com_admin/sql/updates/mysql/5.3.0-2025-02-24.sql From 82aa77773e43a3f6ca8c30f9d09291bde283612f Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Sun, 23 Feb 2025 18:28:05 +0100 Subject: [PATCH 10/12] phpcs --- plugins/content/joomla/src/Extension/Joomla.php | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/content/joomla/src/Extension/Joomla.php b/plugins/content/joomla/src/Extension/Joomla.php index 84bcb1317dd38..3590804504fd6 100644 --- a/plugins/content/joomla/src/Extension/Joomla.php +++ b/plugins/content/joomla/src/Extension/Joomla.php @@ -11,7 +11,6 @@ namespace Joomla\Plugin\Content\Joomla\Extension; use Joomla\CMS\Cache\CacheControllerFactory; -use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Event\Model\AfterChangeStateEvent; use Joomla\CMS\Event\Model\AfterSaveEvent; use Joomla\CMS\Event\Model\BeforeChangeStateEvent; From 2b639e3c1b7b9f8b71a3a5ac117585ee7c5940d6 Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Fri, 7 Mar 2025 17:49:47 +0100 Subject: [PATCH 11/12] Rename 5.3.0-2025-02-24.sql to 6.0.0-2025-02-24.sql --- .../updates/mysql/{5.3.0-2025-02-24.sql => 6.0.0-2025-02-24.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename administrator/components/com_admin/sql/updates/mysql/{5.3.0-2025-02-24.sql => 6.0.0-2025-02-24.sql} (100%) diff --git a/administrator/components/com_admin/sql/updates/mysql/5.3.0-2025-02-24.sql b/administrator/components/com_admin/sql/updates/mysql/6.0.0-2025-02-24.sql similarity index 100% rename from administrator/components/com_admin/sql/updates/mysql/5.3.0-2025-02-24.sql rename to administrator/components/com_admin/sql/updates/mysql/6.0.0-2025-02-24.sql From e2b6973196387bc1f0bb76b2ce1ab7802fd9864a Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Fri, 7 Mar 2025 17:50:13 +0100 Subject: [PATCH 12/12] Rename 5.3.0-2025-02-24.sql to 6.0.0-2025-02-24.sql --- .../postgresql/{5.3.0-2025-02-24.sql => 6.0.0-2025-02-24.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename administrator/components/com_admin/sql/updates/postgresql/{5.3.0-2025-02-24.sql => 6.0.0-2025-02-24.sql} (100%) diff --git a/administrator/components/com_admin/sql/updates/postgresql/5.3.0-2025-02-24.sql b/administrator/components/com_admin/sql/updates/postgresql/6.0.0-2025-02-24.sql similarity index 100% rename from administrator/components/com_admin/sql/updates/postgresql/5.3.0-2025-02-24.sql rename to administrator/components/com_admin/sql/updates/postgresql/6.0.0-2025-02-24.sql