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 {
unset($filter);
$storagePids = GeneralUtility::trimExplode(
',', $this->configurationManager->getConfiguration(
ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK
)['persistence']['storagePid']);
',',
$this->configurationManager->getConfiguration(
ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK
)['persistence']['storagePid']
);
$this->assignFilterValues($storagePids, $filters);
$this->view->assign('recordPageIds', $storagePids);
......@@ -387,9 +389,11 @@ class JoblistController extends ActionController {
$this->view->assign('job', $job);
} else {
$storagePids = GeneralUtility::trimExplode(
',', $this->configurationManager->getConfiguration(
ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK
)['persistence']['storagePid']);
',',
$this->configurationManager->getConfiguration(
ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK
)['persistence']['storagePid']
);
$this->view->assign('companies', $this->companyRepository->getAllCompanies($storagePids));
}
......
......@@ -126,7 +126,7 @@ class CompanyRepository extends Repository {
*/
public function getAllCompanies(array $pageUids, array $filters = []) {
$hash = '';
foreach($pageUids as $pageUid) {
foreach ($pageUids as $pageUid) {
$hash .= $pageUid . '_' . implode('-', $filters);
}
if (!isset($this->cache[$hash])) {
......
......@@ -6,7 +6,7 @@
"license": [
"GPL-2.0-or-later"
],
"version": "5.6.5",
"version": "5.6.6",
"support": {
"issues": "https://gitlab.sgalinski.de/typo3/sg_jobs"
},
......
......@@ -4,7 +4,7 @@ $EM_CONF['sg_jobs'] = [
'title' => 'Jobs',
'description' => 'Manage and display your Job offers.',
'category' => 'plugin',
'version' => '5.6.5',
'version' => '5.6.6',
'state' => 'stable',
'uploadfolder' => FALSE,
'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