Skip to content

Commit

Permalink
[BUGFIX] Use correct default value for sys_file_storage|is_public
Browse files Browse the repository at this point in the history
Use 1 instead of true as default value.

Resolves: #87873
Releases: master, 9.5, 8.7

Change-Id: I6665ebd5b59336a00ea3019cf30ba5c98123a4f6
Reviewed-on: https://review.typo3.org/c/60072
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Benni Mack <benni@typo3.org>
Reviewed-by: Benni Mack <benni@typo3.org>
  • Loading branch information
georgringer authored and bmack committed Mar 11, 2019
1 parent 5bb260c commit 0292643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/core/Configuration/TCA/sys_file_storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
'is_public' => [
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_tca.xlf:sys_file_storage.is_public',
'config' => [
'default' => true,
'default' => 1,
'type' => 'user',
'userFunc' => \TYPO3\CMS\Core\Resource\Service\UserStorageCapabilityService::class . '->renderIsPublic',
]
Expand Down

0 comments on commit 0292643

Please sign in to comment.