Skip to content

Commit

Permalink
[BUGFIX] Use proper Uppercase Vendor name for registerModule()
Browse files Browse the repository at this point in the history
Fix a regression introduced in c43e741
  • Loading branch information
abeutel committed Feb 12, 2020
1 parent c43e741 commit c543909
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Documentation/Changelog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Change Log

The following is an overview of the changes in this extension. For more details `read the online log <https://github.com/mehrwert/TYPO3-phpMyAdmin>`_.

2020-02-12 Andreas Beutel - Version 5.6.1
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- [BUGFIX] Use proper Uppercase Vendor name for registerModule()

2020-02-10 Andreas Beutel - Version 5.6.0
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- [BUGFIX] Vendor name must begin with Capital letter - GH#37 (thanks to ashupatel1990 for reporting this)
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

project = phpMyAdmin for TYPO3
version = 5.5
release = 5.6.0
release = 5.6.1
t3author = mehrwert intermediale kommunikation GmbH
copyright = since 2002 by the authors

Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'description' => 'Third party \'phpMyAdmin\' administration module. Access to admin-users only.',
'category' => 'module',
'shy' => 0,
'version' => '5.6.0',
'version' => '5.6.1',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
Expand Down
2 changes: 1 addition & 1 deletion ext_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// If the backend is loaded, add the module
if (TYPO3_MODE == 'BE') {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'mehrwert.Phpmyadmin',
'Mehrwert.Phpmyadmin',
'tools', // Make module a submodule of 'tools'
'phpmyadmin_mod1', // Submodule key
'', // Position
Expand Down

0 comments on commit c543909

Please sign in to comment.