[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[3556] trunk/bin/am.pl



Revision: 3556
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3556&view=rev
Author:   einhverfr
Date:     2011-07-21 20:11:09 +0000 (Thu, 21 Jul 2011)

Log Message:
-----------
Correcting recurring transaction template calls

Modified Paths:
--------------
    trunk/bin/am.pl

Modified: trunk/bin/am.pl
===================================================================
--- trunk/bin/am.pl	2011-07-21 19:55:56 UTC (rev 3555)
+++ trunk/bin/am.pl	2011-07-21 20:11:09 UTC (rev 3556)
@@ -2302,20 +2302,22 @@
             for ( 0 .. $#f ) {
                 push @temp_split, $f{$f[$_]};
             }
-            $column_data{recurringemail} = {
-                text => join ':', @temp_split,
-                delimeter => ':',
-                };
+#            $column_data{recurringemail} = {
+#                text => join ':', @temp_split,
+#                delimeter => ':',
+#                };
+            $column_data{recurringemail} = join ':', @temp_split;
 
             @temp_split = ();
             @f = split /:/, $ref->{recurringprint};
             for ( 0 .. $#f ) {
                 push @temp_split, $f{$f[$_]};
             }
-            $column_data{recurringprint} = {
-                text => join ':', @temp_split,
-                delimeter => ':',
-                };
+            $column_data{recurringprint} = join ':', @temp_split;
+#            $column_data{recurringprint} = {
+#                text => join ':', @temp_split,
+#                delimeter => ':',
+#                };
 
             $j++;
             $j %= 2;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.