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

SF.net SVN: ledger-smb:[4285] branches/1.3/UI/form-dynatable.csv



Revision: 4285
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4285&view=rev
Author:   einhverfr
Date:     2012-02-02 06:21:52 +0000 (Thu, 02 Feb 2012)
Log Message:
-----------
Correcting another case where HASH(0x....) was displaying in csv output

Modified Paths:
--------------
    branches/1.3/UI/form-dynatable.csv

Modified: branches/1.3/UI/form-dynatable.csv
===================================================================
--- branches/1.3/UI/form-dynatable.csv	2012-02-01 02:24:00 UTC (rev 4284)
+++ branches/1.3/UI/form-dynatable.csv	2012-02-02 06:21:52 UTC (rev 4285)
@@ -1,5 +1,5 @@
 <?lsmb FOREACH column IN columns;
-	IF heading.$column.text OR heading.$column.href;
+	IF heading.$column.exists('text');
 		heading.$column.text;
 	ELSE;
 		heading.$column;
@@ -10,7 +10,7 @@
 END ?>
 <?lsmb FOREACH row IN rows;
 	FOREACH column IN columns;
-		IF row.$column.text.defined OR row.$column.href.defined;
+		IF row.$column.exists('text');
 			row.$column.text;
 		ELSE;
 			row.$column;

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