From a41d5ef2630bcfa5decf498906d2b64734cf63fd Mon Sep 17 00:00:00 2001 From: cxl Date: Tue, 24 Nov 2015 08:32:36 +0000 Subject: [PATCH] .uppweb git-svn-id: svn://ultimatepp.org/upp/trunk@9225 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppbox/uppweb/www.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/uppbox/uppweb/www.cpp b/uppbox/uppweb/www.cpp index c1a93aad2..30e361c12 100644 --- a/uppbox/uppweb/www.cpp +++ b/uppbox/uppweb/www.cpp @@ -701,8 +701,9 @@ String Downloads() if(fn[i].StartsWith(decode(pass, 0, "upp-mingw", 1, "upp-win", "upp-x11"))) { if(next) r << "&"; next = true; - r << (int)tm[i].year << "-" << (int)tm[i].month << "-" << (int)tm[i].day - << " " << (int)tm[i].hour << ":" << (int)tm[i].minute + r << Format("%04d-%02d-%02d %02d:%02d", + (int)tm[i].year, (int)tm[i].month, (int)tm[i].day, + (int)tm[i].hour, (int)tm[i].minute) << " [^downloads/" << fn[i] << "^ \1" << fn[i] << "\1]"; } }