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
fd53cad2
Commit
fd53cad2
authored
Jun 14, 2018
by
Carsten Rose
Browse files
Save.php: error message was still empty - now the label name is really printed.
parent
c56984e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/Save.php
View file @
fd53cad2
...
...
@@ -439,7 +439,7 @@ class Save {
}
if
(
!
$requiredOff
&&
$mode
==
FE_MODE_REQUIRED
&&
empty
(
$clientValues
[
$formElement
[
FE_NAME
]]))
{
throw
new
UserFormException
(
"Missing required value
."
,
ERROR_REQUIRED_VALUE_EMPTY
);
throw
new
UserFormException
(
"Missing required value
: "
.
$formElement
[
FE_LABEL
]
,
ERROR_REQUIRED_VALUE_EMPTY
);
}
if
(
$mode
==
FE_MODE_HIDDEN
)
{
...
...
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