diff --git a/componentbuilderactionlogcompiler.php b/componentbuilderactionlogcompiler.php index dd86592..2c05779 100644 --- a/componentbuilderactionlogcompiler.php +++ b/componentbuilderactionlogcompiler.php @@ -4,7 +4,7 @@ * * @created 30th April, 2015 * @author Llewellyn van der Merwe - * @git Joomla Component Builder + * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ diff --git a/componentbuilderactionlogcompiler.xml b/componentbuilderactionlogcompiler.xml index 1a84f15..da92719 100644 --- a/componentbuilderactionlogcompiler.xml +++ b/componentbuilderactionlogcompiler.xml @@ -1,7 +1,7 @@ PLG_EXTENSION_COMPONENTBUILDERACTIONLOGCOMPILER - 8th July, 2022 + 20th August, 2022 Llewellyn van der Merwe joomla@vdm.io https://dev.vdm.io diff --git a/script.php b/script.php index 4ae9591..fe19ad3 100644 --- a/script.php +++ b/script.php @@ -4,7 +4,7 @@ * * @created 30th April, 2015 * @author Llewellyn van der Merwe - * @git Joomla Component Builder + * @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ @@ -24,11 +24,11 @@ class plgExtensionComponentbuilderActionLogCompilerInstallerScript * Called before any type of action * * @param string $route Which action is happening (install|uninstall|discover_install|update) - * @param JAdapterInstance $adapter The object responsible for running this script + * @param Joomla\CMS\Installer\InstallerAdapter $adapter The object responsible for running this script * * @return boolean True on success */ - public function preflight($route, JAdapterInstance $adapter) + public function preflight($route, $adapter) { // get application $app = JFactory::getApplication(); @@ -47,7 +47,7 @@ class plgExtensionComponentbuilderActionLogCompilerInstallerScript $pathToCore = JPATH_ADMINISTRATOR . '/components/com_componentbuilder/helpers/componentbuilder.php'; if (!JFile::exists($pathToCore)) { - $app->enqueueMessage('JCB must first be installed from Joomla Component Builder.', 'error'); + $app->enqueueMessage('Joomla Component Builder must first be installed from Joomla Component Builder.', 'error'); return false; } }