From 3cb95c9870066246286e4cf2585ad4f88c8ae9ab Mon Sep 17 00:00:00 2001 From: Stefan Galinski <stefan@sgalinski.de> Date: Fri, 31 Mar 2023 18:56:22 +0200 Subject: [PATCH] [TASK] Release version 5.3.1 --- Classes/Controller/JoblistController.php | 6 ++++-- composer.json | 2 +- ext_emconf.php | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Classes/Controller/JoblistController.php b/Classes/Controller/JoblistController.php index 1fa29dce..465eba3a 100644 --- a/Classes/Controller/JoblistController.php +++ b/Classes/Controller/JoblistController.php @@ -426,7 +426,7 @@ class JoblistController extends ActionController { . '-' . $applicationData->getLastName(); $storage = $resourceFactory->getStorageObject(1); $applicationFilePath = Environment::getPublicPath() . '/' . $storage->getConfiguration( - )['basePath'] . 'JobApplication/' . $folderName . + )['basePath'] . 'JobApplication/' . $folderName . '/' . $newName . '.csv'; $this->writeApplicationFile($applicationData, $applicationFilePath); } @@ -757,7 +757,9 @@ class JoblistController extends ActionController { // when we reload etc. this image might already be moved. $usableFile = $storage->moveFile( - $singleFileToMove, $newFolder, $singleFilePostKey . '.' . $filePathInfo['extension'] + $singleFileToMove, + $newFolder, + $singleFilePostKey . '.' . $filePathInfo['extension'] ); } else { /** @noinspection PhpUnreachableStatementInspection */ diff --git a/composer.json b/composer.json index 9ac4ad90..fa3a471c 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "license": [ "GPL-2.0-or-later" ], - "version": "5.3.0", + "version": "5.3.1", "support": { "issues": "https://gitlab.sgalinski.de/typo3/sg_jobs" }, diff --git a/ext_emconf.php b/ext_emconf.php index aa600643..f63d303e 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ $EM_CONF['sg_jobs'] = [ 'title' => 'Jobs', 'description' => 'Manage and display your Job offers.', 'category' => 'plugin', - 'version' => '5.3.0', + 'version' => '5.3.1', 'state' => 'stable', 'uploadfolder' => FALSE, 'createDirs' => '', -- GitLab