Author: hqm
Date: 2007-10-16 13:34:46 -0700 (Tue, 16 Oct 2007)
New Revision: 6873

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/data/LzReplicationManager.lzs
Log:
Change 20071016-hqm-4 by [EMAIL PROTECTED] on 2007-10-16 15:19:46 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:
    

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 19:37:39 UTC (rev 6872)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/data/LzReplicationManager.lzs      
2007-10-16 20:34:46 UTC (rev 6873)
@@ -207,7 +207,7 @@
         hadxpathconstraint = true;
 
         this.__LZpreventXPathUpdate = true;
-        this.applyConstraint( 'xpath', cons, this._t() );
+        this.applyConstraint( 'xpath', cons, this._t != null ? this._t() : [] 
);
         this.__LZpreventXPathUpdate = false;
     } else if ( odp._instanceAttrs.$refs && odp._instanceAttrs.$refs.xpath ){
         //<view><datapath xpath="${ ... }"/>


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

Reply via email to