Was attempting to integrate the filemanager into my website via sitemgr and noticed that the date and time had no space in between them when displayed. so I changed it here…
/sitemgr/modules/class.module_download.inc.php - line 161
changed$dateformat = $GLOBALS[‘egw_info’][‘user’][‘preferences’][‘common’][‘dateformat’].to
$dateformat = $GLOBALS[‘egw_info’][‘user’][‘preferences’][‘common’][‘dateformat’].’ '.
Also I decided to center the “date” column… I thought it looked better, but whatever…
line 145 -->
'.lang(‘Date’).' |
line 177 -->
'. date($dateformat,$file[‘mtime’] ? $file[‘mtime’] : $file[‘ctime’]).' |
line 193 -->
'. date($dateformat,$file[‘mtime’] ? $file[‘mtime’] : $file[‘ctime’]).' |
Obviously the centering doesn’t need to be applied to the trunk, but the space in between date and time should be…