Author: thomas.heute(a)jboss.com
Date: 2010-11-02 09:07:58 -0400 (Tue, 02 Nov 2010)
New Revision: 4907
Modified:
portal/trunk/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js
Log:
GTNPORTAL-1621: RSS gadget displays wrong publish date
Modified: portal/trunk/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js
===================================================================
---
portal/trunk/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js 2010-11-02
12:06:07 UTC (rev 4906)
+++
portal/trunk/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js 2010-11-02
13:07:58 UTC (rev 4907)
@@ -43,7 +43,7 @@
if (isNaN(B)) {
return "an indeterminate amount of time ago"
}
- time = new Date().getTime() / 1000 - B;
+ time = (new Date().getTime() 1000 - B) / 1000;
if (time < 60) {
return "less than a minute ago"
} else {
Show replies by date