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
28b32e94
Commit
28b32e94
authored
Dec 17, 2016
by
Carsten Rose
Browse files
Sip.php, Delete.php, QuickForm.php: Fixed broken Delete button.
parent
6d75b28b
Changes
2
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/Delete.php
View file @
28b32e94
...
...
@@ -49,7 +49,7 @@ class Delete {
$rc
=
false
;
$msg
=
array
();
if
(
!
isset
(
$form
[
F_TABLE_NAME
])
||
$form
[
F_TABLE_NAME
]
===
''
)
{
if
(
!
isset
(
$form
[
F_TABLE_NAME
])
||
$form
[
F_TABLE_NAME
]
===
''
||
$form
[
F_TABLE_NAME
]
===
false
)
{
throw
new
CodeException
(
'Missing table name'
,
ERROR_MISSING_TABLE_NAME
);
}
...
...
extension/qfq/qfq/store/Sip.php
View file @
28b32e94
...
...
@@ -194,8 +194,8 @@ class Sip {
switch
(
$key
)
{
case
SIP_SIP
:
case
SIP_TARGET_URL
:
case
SIP_MODE_ANSWER
:
case
SIP_TABLE
:
//
case SIP_MODE_ANSWER:
//
case SIP_TABLE:
case
SIP_URLPARAM
:
break
;
default
:
...
...
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