Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
bd578160
Commit
bd578160
authored
Jun 12, 2019
by
Carsten Rose
Browse files
Fix index undefined
parent
4226f856
Pipeline
#1948
passed with stages
in 2 minutes and 35 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Source/core/database/DatabaseUpdate.php
View file @
bd578160
...
...
@@ -169,9 +169,11 @@ class DatabaseUpdate {
return
null
;
}
if
(
$_GET
[
ACTION_FUNCTION_UPDATE
]
===
ACTION_FUNCTION_UPDATE_NEXT_UPDATE
)
{
$actionFunction
=
$_GET
[
ACTION_FUNCTION_UPDATE
]
??
''
;
if
(
$actionFunction
===
ACTION_FUNCTION_UPDATE_NEXT_UPDATE
)
{
return
ACTION_FUNCTION_UPDATE_NOT_PERFORMED
;
}
elseif
(
$
_GET
[
ACTION_FUNCTION_UPDATE
]
===
ACTION_FUNCTION_UPDATE_NEVER
)
{
}
elseif
(
$
actionFunction
===
ACTION_FUNCTION_UPDATE_NEVER
)
{
return
ACTION_FUNCTION_UPDATE_NEVER
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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