Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sg_jobs
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TYPO3
sg_jobs
Commits
e361a8e6
Commit
e361a8e6
authored
1 month ago
by
Kevin von Spiczak
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Release version 6.2.3
parent
a7aec119
No related branches found
Branches containing commit
Tags
6.2.3
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Classes/Controller/JoblistController.php
+19
-19
19 additions, 19 deletions
Classes/Controller/JoblistController.php
composer.json
+1
-1
1 addition, 1 deletion
composer.json
ext_emconf.php
+1
-1
1 addition, 1 deletion
ext_emconf.php
with
21 additions
and
21 deletions
Classes/Controller/JoblistController.php
+
19
−
19
View file @
e361a8e6
...
...
@@ -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'
);
...
...
This diff is collapsed.
Click to expand it.
composer.json
+
1
−
1
View file @
e361a8e6
...
...
@@ -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"
},
...
...
This diff is collapsed.
Click to expand it.
ext_emconf.php
+
1
−
1
View file @
e361a8e6
...
...
@@ -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'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment