Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
extensions.typo3.org
extensions.typo3.org
Commits
a2013342
Commit
a2013342
authored
Sep 02, 2017
by
Thomas Löffler
Browse files
Casts all text fields to string in case of null
Prevents sql errors on writing to database
parent
ad6454db
Pipeline
#2116
passed with stages
in 1 minute and 12 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
html/typo3conf/ext/ter/class.tx_ter_api.php
View file @
a2013342
...
...
@@ -965,19 +965,19 @@ class tx_ter_api
'composerinfo'
=>
json_encode
(
$extensionInfoData
->
technicalData
->
composerInfo
),
'shy'
=>
(
int
)
$extensionInfoData
->
technicalData
->
shy
,
'dependencies'
=>
serialize
(
$dependenciesArr
),
'createdirs'
=>
$extensionInfoData
->
technicalData
->
createDirs
,
'createdirs'
=>
(
string
)
$extensionInfoData
->
technicalData
->
createDirs
,
'priority'
=>
$extensionInfoData
->
technicalData
->
priority
,
'modules'
=>
$extensionInfoData
->
technicalData
->
modules
,
'modules'
=>
(
string
)
$extensionInfoData
->
technicalData
->
modules
,
'uploadfolder'
=>
(
int
)
$extensionInfoData
->
technicalData
->
uploadFolder
,
'modifytables'
=>
$extensionInfoData
->
technicalData
->
modifyTables
,
'modifytables'
=>
(
string
)
$extensionInfoData
->
technicalData
->
modifyTables
,
'clearcacheonload'
=>
(
int
)
$extensionInfoData
->
technicalData
->
clearCacheOnLoad
,
'locktype'
=>
$extensionInfoData
->
technicalData
->
lockType
,
'authorname'
=>
$extensionInfoData
->
metaData
->
authorName
,
'authoremail'
=>
$extensionInfoData
->
metaData
->
authorEmail
,
'authorcompany'
=>
$extensionInfoData
->
metaData
->
authorCompany
,
'authorname'
=>
(
string
)
$extensionInfoData
->
metaData
->
authorName
,
'authoremail'
=>
(
string
)
$extensionInfoData
->
metaData
->
authorEmail
,
'authorcompany'
=>
(
string
)
$extensionInfoData
->
metaData
->
authorCompany
,
'codingguidelinescompliance'
=>
$extensionInfoData
->
infoData
->
codingGuidelinesCompliance
,
'codingguidelinescompliancenote'
=>
$extensionInfoData
->
infoData
->
codingGuidelinesComplianceNote
,
'loadorder'
=>
$extensionInfoData
->
technicalData
->
loadOrder
,
'codingguidelinescompliancenote'
=>
(
string
)
$extensionInfoData
->
infoData
->
codingGuidelinesComplianceNote
,
'loadorder'
=>
(
string
)
$extensionInfoData
->
technicalData
->
loadOrder
,
];
// Update an existing or insert a new extension details record
...
...
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