You left a Debug.info in there... Won't that blow up with debugging off? On 2011-02-10, at 14:41, [email protected] wrote:
> Author: hqm > Date: 2011-02-10 11:41:20 -0800 (Thu, 10 Feb 2011) > New Revision: 18453 > > Modified: > openlaszlo/trunk/demos/lzpix/classes/search.lzx > Log: > Change hqm-20110210-yYP by [email protected] on 2011-02-10 14:40:27 EST > in /Users/hqm/openlaszlo/trunk3 > for http://svn.openlaszlo.org/openlaszlo/trunk > > Summary: fix for lzpix regression > > New Features: > > Bugs Fixed: LPP-9748 > > Technical Reviewer: hqm > QA Reviewer: (pending) > Doc Reviewer: (pending) > > Documentation: > > Release Notes: > > Overview: > > > Details: > > r18211 overly aggessively transformed "getText()" to ".text" in this app > > > Tests: > > works now in swf10 and dhtml > > > > Modified: openlaszlo/trunk/demos/lzpix/classes/search.lzx > =================================================================== > --- openlaszlo/trunk/demos/lzpix/classes/search.lzx 2011-02-10 14:55:39 UTC > (rev 18452) > +++ openlaszlo/trunk/demos/lzpix/classes/search.lzx 2011-02-10 19:41:20 UTC > (rev 18453) > @@ -58,7 +58,8 @@ > http://creativecommons.org/licenses/by/2.0/ > --> > <method name="sendsearch" args="ignore=null"> > - var tags = this.text; > + var tags = this.getText(); > + Debug.info('tags', tags); > var argobj; > if (tags == "interesting") { > // Special search for interesting photos > @@ -77,7 +78,7 @@ > {argname:"method", argvalue:"flickr.photos.search"}, > // Any Creative-Commons license (all include attribution) > {argname:"license", argvalue:"1,2,3,4,5,6"}, > - {argname:"tags", argvalue:this.text}, > + {argname:"tags", argvalue: tags}, > {argname:"tag_mode", argvalue:"all"}, > {argname:"sort", argvalue:"interestingness-desc"} > ] > > > _______________________________________________ > Laszlo-checkins mailing list > [email protected] > http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins
