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
bd34cdbc
Commit
bd34cdbc
authored
Aug 23, 2019
by
Carsten Rose
Browse files
Merge branch 'elias-increase-forwardPage-length' into 'master'
Increase forwardPage limit from 255 to 511 See merge request
!173
parents
97b0f6ee
cf445fde
Pipeline
#2217
passed with stages
in 2 minutes and 35 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Core/Database/DatabaseUpdateData.php
View file @
bd34cdbc
...
...
@@ -150,6 +150,9 @@ $UPDATE_ARRAY = array(
"UPDATE `Form` SET forwardMode='url-sip-skip-history' WHERE forwardMode='url-sip'"
,
],
'19.7.2'
=>
[
"ALTER TABLE `Form` CHANGE `forwardPage` `forwardPage` VARCHAR(511) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';"
,
],
);
...
...
extension/Classes/Sql/formEditor.sql
View file @
bd34cdbc
...
...
@@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `Form`
`forwardMode`
ENUM
(
'client'
,
'no'
,
'url'
,
'url-skip-history'
,
'url-sip'
,
'url-sip-skip-history'
)
NOT
NULL
DEFAULT
'client'
,
`forwardPage`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
''
,
`forwardPage`
VARCHAR
(
511
)
NOT
NULL
DEFAULT
''
,
`labelAlign`
ENUM
(
'default'
,
'left'
,
'center'
,
'right'
)
NOT
NULL
DEFAULT
'default'
,
`bsLabelColumns`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
''
,
...
...
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