Index: mod1/index.php =================================================================== --- mod1/index.php (revision 27357) +++ mod1/index.php (working copy) @@ -421,7 +421,7 @@ // CSS for drag and drop $this->doc->inDocStyles .= ' table {position:relative;} - .sortable_handle {cursor:move;} + .sortableItem .sortable_handle {cursor:move;} '; if (t3lib_extMgm::isLoaded('t3skin')) { @@ -686,7 +686,6 @@ $canEditPage = $GLOBALS['BE_USER']->isPSet($this->calcPerms, 'pages', 'edit'); $canEditContent = $GLOBALS['BE_USER']->isPSet($this->calcPerms, 'pages', 'editcontent'); - $canCreateNew = $GLOBALS['BE_USER']->isPSet($this->calcPerms, 'pages', 'new'); // Prepare the record icon including a content sensitive menu link wrapped around it: $recordIcon = 'doc->backPath,$contentTreeArr['el']['icon'],'').' style="text-align: center; vertical-align: middle;" width="18" height="16" border="0" title="'.htmlspecialchars('['.$contentTreeArr['el']['table'].':'.$contentTreeArr['el']['uid'].']').'" alt="" />'; @@ -795,8 +794,7 @@ } // Finally assemble the table: - $finalContent = - (!$this->translatorMode && $canCreateNew ? '
' .
@@ -915,6 +913,10 @@
// Modify the flexform pointer so it points to the position of the curren sub element:
$subElementPointer['position'] = $position;
+ if (!$this->translatorMode && $canCreateNew) {
+ $cellContent .= ' ';
+ }
+
$cellContent .= $this->render_framework_allSheets($subElementArr, $languageKey, $subElementPointer, $elementContentTreeArr['ds_meta']);
if (!$this->translatorMode && $canCreateNew) { |