Skip to content

Commit

Permalink
Merge pull request #50 from jonathanheilmann/v1.2.5
Browse files Browse the repository at this point in the history
Release of version 1.2.5
  • Loading branch information
jonathanheilmann authored Nov 8, 2016
2 parents 980a0b1 + 9e4c39c commit a41ea4f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ ChangeLog
:Changes:
Changes

- :Version:
1.2.5

:Changes:
\* [BUGFIX] #46 Error after installation

- :Version:
1.2.4

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"support": {
"issues": "https://github.com/jonathanheilmann/ext-jh_opengraphprotocol/issues"
},
"version": "1.2.4",
"version": "1.2.5",
"require": {
"typo3/cms": "~6.2,~7.6"
},
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'description' => 'Adds the Open Graph protocol properties in meta-tags to the html-header supporting multilingual-websites.',
'category' => 'plugin',
'shy' => 0,
'version' => '1.2.4',
'version' => '1.2.5',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
Expand Down
7 changes: 6 additions & 1 deletion ext_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
die('Access denied.');

// Get extension configuration
$extConf = \TYPO3\CMS\Core\Utility\GeneralUtility::removeDotsFromTS(unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$_EXTKEY]));
if( isset( $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$_EXTKEY])) {
$extConf = \TYPO3\CMS\Core\Utility\GeneralUtility::removeDotsFromTS(unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$_EXTKEY]));
} else {
$extConf = array();
}


// Create array with columns
$tempColumns = array(
Expand Down

0 comments on commit a41ea4f

Please sign in to comment.