Skip to content

Commit

Permalink
* bugfix for TYPO3 8.7: variable $GLOBALS['TYPO3_CONF_VARS']['EXT']['…
Browse files Browse the repository at this point in the history
…extConf']['tt_board'] must be used instead of
  • Loading branch information
franzholz committed Feb 14, 2020
1 parent 4b6e268 commit 3023f4b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2020-02-14 Franz Holzinger <franz@ttproducts.de>
* bugfix for TYPO3 8.7: variable $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['tt_board'] must be used instead of $_EXTCONF

2019-12-18 Franz Holzinger <franz@ttproducts.de>
* fix issue #5: tt_board 1.10.15 works under TYPO3 9.5
* compatibility for TYPO3 9 breaking 82803: $TYPO3_CONF_VARS['FE']['content_doktypes'] has been removed in TYPO3 9
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'title' => 'Message board, twin mode',
'description' => 'Simple threaded (tree) or list message board (forum).',
'category' => 'plugin',
'version' => '1.10.15',
'version' => '1.10.16',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
Expand Down
4 changes: 2 additions & 2 deletions ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
$extensionConfiguration = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Configuration\ExtensionConfiguration::class
)->get(TT_BOARD_EXT);
} else if (isset($_EXTCONF)) {
$extensionConfiguration = unserialize($_EXTCONF); // unserializing the configuration so we can use it here:
} else {
$extensionConfiguration = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][TT_BOARD_EXT]);
}

if (
Expand Down

0 comments on commit 3023f4b

Please sign in to comment.