From 815f2390142e0a9a73df8fc2f726d4799886f2d4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 3 Jun 2011 02:54:54 +0200 Subject: [PATCH] fix download links of newly uploaded files --- files/js/files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/js/files.js b/files/js/files.js index 70774f6ac44..b8bfb02b2bc 100644 --- a/files/js/files.js +++ b/files/js/files.js @@ -157,7 +157,7 @@ $(document).ready(function() { var uploadTime=monthNames[date.getMonth()]+' '+date.getDate()+', '+date.getFullYear()+', '+((date.getHours()<10)?'0':'')+date.getHours()+':'+date.getMinutes(); var html=''; html+=''; - html+=''+name+''; + html+=''+name+''; html+=''+size+''; html+=''+uploadTime+''; html+=''; -- 2.39.5