Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
72046a82
Commit
72046a82
authored
Dec 03, 2017
by
Carsten Rose
Browse files
Save.php: Replaced some constants against defines
parent
b89b3057
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/Save.php
View file @
72046a82
...
...
@@ -317,7 +317,7 @@ class Save {
foreach
(
$this
->
feSpecNative
AS
$formElement
)
{
// skip non upload formElements
if
(
$formElement
[
FE_TYPE
]
!=
'upload'
)
{
if
(
$formElement
[
FE_TYPE
]
!=
FE_TYPE_UPLOAD
)
{
continue
;
}
...
...
@@ -329,7 +329,7 @@ class Save {
// Preparation for Log, Debug
$this
->
store
->
setVar
(
SYSTEM_FORM_ELEMENT
,
Logger
::
formatFormElementName
(
$formElement
),
STORE_SYSTEM
);
$column
=
$formElement
[
'name'
];
$column
=
$formElement
[
FE_NAME
];
$pathFileName
=
$this
->
doUpload
(
$formElement
,
$formValues
[
$column
],
$sip
,
$modeUpload
);
// Upload Type: Simple or Advanced
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment