Added the underscore back to the plugin language prefix

This commit is contained in:
Llewellyn van der Merwe 2022-03-10 06:32:52 +02:00
parent 278f70c8a6
commit 3331a4c28d
Signed by: Llewellyn
GPG Key ID: EFC0C720A240551C
4 changed files with 4 additions and 4 deletions

View File

@ -143,7 +143,7 @@ TODO
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
+ *First Build*: 30th April, 2015
+ *Last Build*: 9th March, 2022
+ *Last Build*: 10th March, 2022
+ *Version*: 2.12.15
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt

View File

@ -143,7 +143,7 @@ TODO
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
+ *First Build*: 30th April, 2015
+ *Last Build*: 9th March, 2022
+ *Last Build*: 10th March, 2022
+ *Version*: 2.12.15
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="4" method="upgrade">
<name>COM_COMPONENTBUILDER</name>
<creationDate>9th March, 2022</creationDate>
<creationDate>10th March, 2022</creationDate>
<author>Llewellyn van der Merwe</author>
<authorEmail>llewellyn@joomlacomponentbuilder.com</authorEmail>
<authorUrl>http://www.joomlacomponentbuilder.com</authorUrl>

View File

@ -97,7 +97,7 @@ abstract class PluginHelper
$group = 'Button';
}
return 'PLG_' . strtoupper($group) . strtoupper(
return 'PLG_' . strtoupper($group) . '_' . strtoupper(
$codeName
);
}