Author: hqm
Date: 2007-10-16 13:41:26 -0700 (Tue, 16 Oct 2007)
New Revision: 6874

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/data/LzReplicationManager.lzs
Log:
Change 20071016-hqm-2 by [EMAIL PROTECTED] on 2007-10-16 16:35:26 EDT
    in /cygdrive/c/users/hqm/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: fix for DHTML replication bug

New Features:

Bugs Fixed: LPP-4893

Technical Reviewer: andre
QA Reviewer: ptw
Doc Reviewer:

Documentation:

check for null dependencies function before calling it

Release Notes:

Details:

Need to do the same check for xpath case as datapath case 


Tests:

test case from bug, smokecheck, amazon app



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/data/LzReplicationManager.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/data/LzReplicationManager.lzs      
2007-10-16 20:34:46 UTC (rev 6873)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/data/LzReplicationManager.lzs      
2007-10-16 20:41:26 UTC (rev 6874)
@@ -219,7 +219,7 @@
         hadxpathconstraint = true;
 
         this.__LZpreventXPathUpdate = true;
-        this.applyConstraint( 'xpath', cons, this._t() );
+        this.applyConstraint( 'xpath', cons, this._t != null ? this._t() : [] 
);
         this.__LZpreventXPathUpdate = false;
     }
 


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to