Skip to content
Snippets Groups Projects
Commit e361a8e6 authored by Kevin von Spiczak's avatar Kevin von Spiczak
Browse files

[TASK] Release version 6.2.3

parent a7aec119
No related branches found
Tags 6.2.3
No related merge requests found
......@@ -189,24 +189,24 @@ class JoblistController extends ActionController {
}
}
/**
* Make sure the upload folder & upload temp folder exists
*
* @return void
* @throws ExistingTargetFolderException
* @throws InsufficientFolderAccessPermissionsException
* @throws InsufficientFolderWritePermissionsException
*/
public function initializeAction(): void {
$storage = $this->fileAndFolderService->getStorage();
if (!$storage->hasFolder($this->jobFolderPath)) {
$storage->createFolder($this->jobFolderPath);
}
$tempFolderPath = $this->jobFolderPath . DIRECTORY_SEPARATOR . UploadController::JOB_APPLICATION_TEMP_FOLDER;
if (!$storage->hasFolder($tempFolderPath)) {
$storage->createFolder($tempFolderPath);
}
}
/**
* Make sure the upload folder & upload temp folder exists
*
* @return void
* @throws ExistingTargetFolderException
* @throws InsufficientFolderAccessPermissionsException
* @throws InsufficientFolderWritePermissionsException
*/
public function initializeAction(): void {
$storage = $this->fileAndFolderService->getStorage();
if (!$storage->hasFolder($this->jobFolderPath)) {
$storage->createFolder($this->jobFolderPath);
}
$tempFolderPath = $this->jobFolderPath . DIRECTORY_SEPARATOR . UploadController::JOB_APPLICATION_TEMP_FOLDER;
if (!$storage->hasFolder($tempFolderPath)) {
$storage->createFolder($tempFolderPath);
}
}
/**
* Initialize the indexAction to set the currentPageBrowserPage parameter
......@@ -465,7 +465,7 @@ class JoblistController extends ActionController {
}
}
$this->view->assign('isProjectBaseLoaded', ExtensionManagementUtility::isLoaded('project_base'));
$this->view->assign('isProjectBaseLoaded', ExtensionManagementUtility::isLoaded('project_base'));
$this->view->assign('applyData', $applyData);
$this->view->assign('maxFileSize', $this->settings['allowedMaxFileSize']);
$this->view->assign('maxFileSizeMb', ((int) $this->settings['allowedMaxFileSize'] / 1000) . ' MByte');
......
......@@ -6,7 +6,7 @@
"license": [
"GPL-2.0-or-later"
],
"version": "6.2.2",
"version": "6.2.3",
"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' => '6.2.2',
'version' => '6.2.3',
'state' => 'stable',
'author' => 'Stefan Galinski',
'author_email' => 'stefan@sgalinski.de',
......
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