Skip to content

Commit

Permalink
Merge pull request #92 from jweiland-net/castMaps2UidToInt
Browse files Browse the repository at this point in the history
Cast maps2 uid to int
  • Loading branch information
sfroemkenjw committed Apr 26, 2024
2 parents 7ffb91e + 6f6abda commit 78f3915
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ public static function init(int $organisationseinheitId): void
{
self::$configurationManager = GeneralUtility::makeInstance(ConfigurationManager::class);
self::$geoCodeService = GeneralUtility::makeInstance(GeoCodeService::class);
self::$maps2Pid = self::$configurationManager->getConfiguration(
self::$maps2Pid = (int)(self::$configurationManager->getConfiguration(
ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK
)['settings']['organisationseinheiten']['maps2Pid'] ?? 0;
)['settings']['organisationseinheiten']['maps2Pid'] ?? 0);

self::$id = $organisationseinheitId;
}
Expand Down
5 changes: 5 additions & 0 deletions Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
ChangeLog
=========

Version 6.0.4
=============

* [BUGFIX] Cast maps2Uid to INT in ViewHelper

Version 6.0.3
=============

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 @@
[general]

project = service_bw2 (Service BW 2)
version = 6.0.3
version = 6.0.4
release = 6.0
copyright = since 2013 by jweiland.net

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 @@
'author_email' => 'projects@jweiland.net',
'author_company' => 'jweiland.net',
'state' => 'stable',
'version' => '6.0.3',
'version' => '6.0.4',
'constraints' => [
'depends' => [
'typo3' => '10.4.32-11.5.99',
Expand Down

0 comments on commit 78f3915

Please sign in to comment.