Index: class.em_index.php =================================================================== --- class.em_index.php (revision 5405) +++ class.em_index.php (working copy) @@ -2826,6 +2826,8 @@ $cells[] = 'Doc:'; $cells[] = 'Type:'; } else { + $cells[] = 'labelInfo('Date of upload of the repository version.') . '>Upload date:'; + $cells[] = 'Author:'; $cells[] = 'labelInfo('Current version of the extension on this server. If colored red there is a newer version in repository! Then you should upgrade.').'>Cur. Ver:'; $cells[] = 'labelInfo('Current type of installation of the extension on this server.').'>Cur. Type:'; $cells[] = 'labelInfo('Number of downloads, all versions/this version').'>DL:'; @@ -2864,7 +2866,7 @@ } // Extension title: - $cells[] = ''.t3lib_div::fixed_lgd_cs($extInfo['EM_CONF']['title']?$extInfo['EM_CONF']['title']:''.$extKey.'',40).''; + $cells[] = '' . t3lib_div::fixed_lgd_cs($extInfo['EM_CONF']['title'] ? $extInfo['EM_CONF']['title'] : '' . $extKey . '', 40) . ''; // Based on which display mode you will see more or less details: if (!$this->MOD_SETTINGS['display_details']) { @@ -2959,6 +2961,8 @@ if (isset($inst_list[$extKey])) { if ($verDiff) $inst_curVer = ''.$GLOBALS['TBE_TEMPLATE']->rfw($inst_curVer).''; } + $cells[] = '' . t3lib_befunc::date($extInfo['EM_CONF']['lastuploaddate']) . ''; + $cells[] = '' . htmlspecialchars(t3lib_div::fixed_lgd_cs($extInfo['EM_CONF']['author'], $GLOBALS['BE_USER']->uc[titleLen])) . ''; $cells[] = ''.$inst_curVer.''; $cells[] = ''.$this->typeLabels[$inst_list[$extKey]['type']].(strlen($inst_list[$extKey]['doubleInstall'])>1?' '.$GLOBALS['TBE_TEMPLATE']->rfw($inst_list[$extKey]['doubleInstall']).'':'').''; $cells[] = ''.($extInfo['downloadcounter_all']?$extInfo['downloadcounter_all']:'  ').'/'.($extInfo['downloadcounter']?$extInfo['downloadcounter']:' ').'';