Skip to content
Snippets Groups Projects
Commit 8d504045 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[TASK] Release version 5.6.6

parent 2041fa77
No related branches found
No related tags found
No related merge requests found
...@@ -246,9 +246,11 @@ class JoblistController extends ActionController { ...@@ -246,9 +246,11 @@ class JoblistController extends ActionController {
unset($filter); unset($filter);
$storagePids = GeneralUtility::trimExplode( $storagePids = GeneralUtility::trimExplode(
',', $this->configurationManager->getConfiguration( ',',
ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK $this->configurationManager->getConfiguration(
)['persistence']['storagePid']); ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK
)['persistence']['storagePid']
);
$this->assignFilterValues($storagePids, $filters); $this->assignFilterValues($storagePids, $filters);
$this->view->assign('recordPageIds', $storagePids); $this->view->assign('recordPageIds', $storagePids);
...@@ -387,9 +389,11 @@ class JoblistController extends ActionController { ...@@ -387,9 +389,11 @@ class JoblistController extends ActionController {
$this->view->assign('job', $job); $this->view->assign('job', $job);
} else { } else {
$storagePids = GeneralUtility::trimExplode( $storagePids = GeneralUtility::trimExplode(
',', $this->configurationManager->getConfiguration( ',',
ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK $this->configurationManager->getConfiguration(
)['persistence']['storagePid']); ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK
)['persistence']['storagePid']
);
$this->view->assign('companies', $this->companyRepository->getAllCompanies($storagePids)); $this->view->assign('companies', $this->companyRepository->getAllCompanies($storagePids));
} }
......
...@@ -126,7 +126,7 @@ class CompanyRepository extends Repository { ...@@ -126,7 +126,7 @@ class CompanyRepository extends Repository {
*/ */
public function getAllCompanies(array $pageUids, array $filters = []) { public function getAllCompanies(array $pageUids, array $filters = []) {
$hash = ''; $hash = '';
foreach($pageUids as $pageUid) { foreach ($pageUids as $pageUid) {
$hash .= $pageUid . '_' . implode('-', $filters); $hash .= $pageUid . '_' . implode('-', $filters);
} }
if (!isset($this->cache[$hash])) { if (!isset($this->cache[$hash])) {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
"license": [ "license": [
"GPL-2.0-or-later" "GPL-2.0-or-later"
], ],
"version": "5.6.5", "version": "5.6.6",
"support": { "support": {
"issues": "https://gitlab.sgalinski.de/typo3/sg_jobs" "issues": "https://gitlab.sgalinski.de/typo3/sg_jobs"
}, },
......
...@@ -4,7 +4,7 @@ $EM_CONF['sg_jobs'] = [ ...@@ -4,7 +4,7 @@ $EM_CONF['sg_jobs'] = [
'title' => 'Jobs', 'title' => 'Jobs',
'description' => 'Manage and display your Job offers.', 'description' => 'Manage and display your Job offers.',
'category' => 'plugin', 'category' => 'plugin',
'version' => '5.6.5', 'version' => '5.6.6',
'state' => 'stable', 'state' => 'stable',
'uploadfolder' => FALSE, 'uploadfolder' => FALSE,
'createDirs' => '', 'createDirs' => '',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment