Bug #17669
closedDrag&Drop icon should only be displayed when more than 1 IRRE record
0%
Description
The drag&drop icon appears also if there is just 1 record (in contrast to the up/down icons which work correctly)
a fix could work like this but has the problem that it only works after saving once, maybe Oliver you can do better! ;)
// Drag&Drop Sorting: Sortable handler for script.aculo.us
if ($permsEdit && $enableManualSorting && $config['appearance']['useSortable'] && strpos($config['appearance']['hide'],'sort')===false) {
$style = ($config['inline']['first'] == $config['inline']['last']) ? ' style="visibility: hidden;"' : '';
$cells[] = '<img'.t3lib_iconWorks::skinImg($this->backPath,'gfx/move.gif','width="16" height="16" hspace="2"'.$style).' title="'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.move',1).'" alt="" style="cursor: move;" class="sortableHandle" />';
}
(issue imported from #M6498)