[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[5821] trunk/bin
- Subject: SF.net SVN: ledger-smb:[5821] trunk/bin
- From: ..hidden..
- Date: Sat, 18 May 2013 10:45:13 +0000
Revision: 5821
http://sourceforge.net/p/ledger-smb/code/5821
Author: einhverfr
Date: 2013-05-18 10:45:12 +0000 (Sat, 18 May 2013)
Log Message:
-----------
Fixing date formatting for file attachments in old code areas (new code formats automatically)
Modified Paths:
--------------
trunk/bin/aa.pl
trunk/bin/ic.pl
trunk/bin/is.pl
trunk/bin/oe.pl
Modified: trunk/bin/aa.pl
===================================================================
--- trunk/bin/aa.pl 2013-05-18 07:09:40 UTC (rev 5820)
+++ trunk/bin/aa.pl 2013-05-18 10:45:12 UTC (rev 5821)
@@ -1045,7 +1045,7 @@
<td><a href="file.pl?action=get&file_class=1&ref_key=$form->{id}&id=$file->{id}"
>$file->{file_name}</a></td>
<td>$file->{mime_type}</td>
-<td>$file->{uploaded_at}</td>
+<td>|.$file->{uploaded_at}.qq|</td>
<td>$file->{uploaded_by_name}</td>
</tr>
|;
Modified: trunk/bin/ic.pl
===================================================================
--- trunk/bin/ic.pl 2013-05-18 07:09:40 UTC (rev 5820)
+++ trunk/bin/ic.pl 2013-05-18 10:45:12 UTC (rev 5821)
@@ -905,7 +905,7 @@
<td><a href="file.pl?action=get&file_class=3&ref_key=$form->{id}&id=$file->{id}"
>$file->{file_name}</a></td>
<td>$file->{mime_type}</td>
-<td>$file->{uploaded_at}</td>
+<td>|.$file->{uploaded_at}->to_output . qq|</td>
<td>$file->{uploaded_by_name}</td>
</tr>
|;
Modified: trunk/bin/is.pl
===================================================================
--- trunk/bin/is.pl 2013-05-18 07:09:40 UTC (rev 5820)
+++ trunk/bin/is.pl 2013-05-18 10:45:12 UTC (rev 5821)
@@ -1078,7 +1078,7 @@
<td><a href="file.pl?action=get&file_class=1&ref_key=$form->{id}&id=$file->{id}"
>$file->{file_name}</a></td>
<td>$file->{mime_type}</td>
-<td>$file->{uploaded_at}</td>
+<td>|.$file->{uploaded_at}->to_output . qq|</td>
<td>$file->{uploaded_by_name}</td>
</tr>
|;
Modified: trunk/bin/oe.pl
===================================================================
--- trunk/bin/oe.pl 2013-05-18 07:09:40 UTC (rev 5820)
+++ trunk/bin/oe.pl 2013-05-18 10:45:12 UTC (rev 5821)
@@ -935,7 +935,7 @@
<td><a href="file.pl?action=get&file_class=2&ref_key=$form->{id}&id=$file->{id}&type=sales_quotation&additional=type"
>$file->{file_name}</a></td>
<td>$file->{mime_type}</td>
-<td>$file->{uploaded_at}</td>
+<td>|.$file->{uploaded_at}.qq|</td>
<td>$file->{uploaded_by_name}</td>
</tr>
|;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.