Author: pbr Date: 2007-01-23 12:21:08 -0800 (Tue, 23 Jan 2007) New Revision: 3491
Modified: openlaszlo/branches/legals/laszlo-explorer/source.jsp Log: Change 20070123-Philip-0 by [EMAIL PROTECTED] on 2007-01-23 14:38:03 EST in /cygdrive/f/laszlo/svn/src/svn/openlaszlo/branches/legals Summary: Fix laszlo-in-10 for dhtml New Features: Bugs Fixed: LPP-3458 Technical Reviewer: jgrandy QA Reviewer: (pending) Doc Reviewer: (pending) Documentation: Release Notes: Details: The parameters to loading.jsp had '?' as a separator character and not '&'. Tests: l-in-10 works in swf and dhtml. Files: M laszlo-explorer/source.jsp Changeset: http://svn.openlaszlo.org/openlaszlo/patches/20070123-Philip-0.tar Modified: openlaszlo/branches/legals/laszlo-explorer/source.jsp =================================================================== --- openlaszlo/branches/legals/laszlo-explorer/source.jsp 2007-01-23 19:42:28 UTC (rev 3490) +++ openlaszlo/branches/legals/laszlo-explorer/source.jsp 2007-01-23 20:21:08 UTC (rev 3491) @@ -1,5 +1,5 @@ <!-- * X_LZ_COPYRIGHT_BEGIN *************************************************** -* Copyright 2001-2006 Laszlo Systems, Inc. All Rights Reserved. * +* Copyright 2001-2007 Laszlo Systems, Inc. All Rights Reserved. * * Use is subject to license terms. * * X_LZ_COPYRIGHT_END ****************************************************** --> <%@ page pageEncoding="UTF-8"%> @@ -152,7 +152,7 @@ </head> <body class="source-view" - onload="parent.swf.location.href='loading.jsp?src=<%= temp?request.getContextPath()+"/"+tempUrl:request.getContextPath()+"/"+src %>?showTaskBar=false&lzr=<%= request.getParameter("lzr") %>';"> + onload="parent.swf.location.href='loading.jsp?src=<%= temp?request.getContextPath()+"/"+tempUrl:request.getContextPath()+"/"+src %>&showTaskBar=false&lzr=<%= request.getParameter("lzr") %>';"> <h2><%= title %></h2> _______________________________________________ Laszlo-checkins mailing list [email protected] http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins
