Feature #64439
closedThumbnail size with PageTS or UserTS - Pictures are to small in backend
0%
Description
For the clients it were beautiful to set the thumbnail size over PageTS or UserTS (constants), because they are to small for a lot of user. TYPO3 6.2 LTS.
1. typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php
row: 1545
static public function thumbCode($row, $table, $field, $backPath, $thumbScript = '', $uploaddir = NULL, $abs = 0, $tparams = '', $size = '', $linkInfoPopup = TRUE) {
// Check and parse the size parameter
$sizeParts = array(128, 128);
2. Typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php
row: 529
'appearance' => array(
'useSortable' => TRUE,
'headerThumbnail' => array(
'field' => 'uid_local',
'width' => '45',
'height' => '45c',*
),
3. Typo3_src -> typo3/sysext/backend/classes/Utility/BackendUtility.php
Zeile 1545
static public function thumbCode($row, $table, $field, $backPath, $thumbScript = '', $uploaddir = NULL, $abs = 0, $tparams = '', $size = '', $linkInfoPopup = TRUE) {
// Check and parse the size parameter
$sizeParts = array(64, 64);
if ($size = trim($size)) {
$sizeParts = explode('x', $size . 'x' . $size);
if (!(int)$sizeParts0) {
$size = '';
}
}
Updated by Frans Saris about 7 years ago
- Is duplicate of Feature #73357: Make thumbnail size in file browser configurable added