Skip to content
Snippets Groups Projects
Commit 34a9ff66 authored by Oliver Bartsch's avatar Oliver Bartsch Committed by Georg Ringer
Browse files

[BUGFIX] Align default value of displayThumbs

The "displayThumbs" module setting is
fetched two times in the FileBrowser. One
time to determine whether thumbnails
should be displayed and a second time
to set the current value of the display
thumbnails "toggle".

However, the default values of those two
cases differed, which then led to a default
state where the "toggle" was active, while
no thumbnails were displayed.

This is now fixed by using the same default
for both cases.

Resolves: #95425
Releases: master
Change-Id: I9cdf81a28aceb91d5f419332d24337b22de2a575
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/71515


Tested-by: default avatarNikita Hovratov <nikita.h@live.de>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarNikita Hovratov <nikita.h@live.de>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent 7fa71a1d
Branches
Tags
No related merge requests found
......@@ -181,7 +181,7 @@ class FileBrowser extends AbstractElementBrowser implements ElementBrowserInterf
$_MOD_MENU = ['displayThumbs' => ''];
$_MOD_SETTINGS = BackendUtility::getModuleData($_MOD_MENU, GeneralUtility::_GP('SET'), 'file_list');
}
$displayThumbs = $_MOD_SETTINGS['displayThumbs'] ?? false;
$displayThumbs = $_MOD_SETTINGS['displayThumbs'] ?? true;
$noThumbs = $noThumbs ?: !$displayThumbs;
if ($this->selectedFolder) {
$files = $this->renderFilesInFolder($this->selectedFolder, $allowedFileExtensions, $noThumbs);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment