calculate correct relative date for trashbin file list

remotes/origin/stable5
Björn Schießle 12 years ago
parent 97e69e5374
commit 16d7716dee
  1. 1
      apps/files_trashbin/index.php
  2. 2
      apps/files_trashbin/templates/part.list.php

@ -72,7 +72,6 @@ $pathtohere = '';
foreach (explode('/', $dir) as $i) { foreach (explode('/', $dir) as $i) {
if ($i != '') { if ($i != '') {
if ( preg_match('/^(.+)\.d[0-9]+$/', $i, $match) ) { if ( preg_match('/^(.+)\.d[0-9]+$/', $i, $match) ) {
error_log("match!");
$name = $match[1]; $name = $match[1];
} else { } else {
$name = $i; $name = $i;

@ -16,7 +16,7 @@
// the bigger the file, the darker the shade of grey; megabytes*2 // the bigger the file, the darker the shade of grey; megabytes*2
$simple_size_color = intval(200-$file['size']/(1024*1024)*2); $simple_size_color = intval(200-$file['size']/(1024*1024)*2);
if($simple_size_color<0) $simple_size_color = 0; if($simple_size_color<0) $simple_size_color = 0;
$relative_deleted_date = OCP\relative_modified_date($file['mtime']); $relative_deleted_date = OCP\relative_modified_date($file['timestamp']);
// the older the file, the brighter the shade of grey; days*14 // the older the file, the brighter the shade of grey; days*14
$relative_date_color = round((time()-$file['mtime'])/60/60/24*14); $relative_date_color = round((time()-$file['mtime'])/60/60/24*14);
if($relative_date_color>200) $relative_date_color = 200; if($relative_date_color>200) $relative_date_color = 200;

Loading…
Cancel
Save