With the help of one of our Beta testers, we've fixed a problem with the
JavaScript detection in the Plum Framework.  This fix will be in RC2, but
you can easily retrofit your existing Plum apps like this:

Replace the first line of code in the following listing in Global.cfm
(around line 245 in an unmodified Global.cfm):

<cfif CompareNoCase(Left(CGI.Script_Name, 7), "/plain/") GT 0>
    <cfhtmlhead text="<noscript><meta http-equiv=""Refresh"" content=""0;
url=#Application.urlRoot#/plain/index.cfm""></noscript>">
</cfif>

with the first line of code from this listing:

<cfif CompareNoCase(Left(Replace(Request.currentUrl, Application.urlRoot,
""), 7), "/plain/") NEQ 0>
    <cfhtmlhead text="<noscript><meta http-equiv=""Refresh"" content=""0;
url=#Application.urlRoot#/plain/index.cfm""></noscript>">
</cfif>

Respectfully,

Adam Phillip Churvis
Member of Team Macromedia
http://www.ProductivityEnhancement.com

Download Plum and other cool development tools,
and get advanced intensive Master-level training:

* C# & ASP.NET for ColdFusion Developers
* ColdFusion MX Master Class
* Advanced Development with CFMX and SQL Server 2000


**********************************************************************
You can subscribe to and unsubscribe from lists, and you can change
your subscriptions between normal and digest modes here:

http://www.productivityenhancement.com/support/DiscussionListsForm.cfm
**********************************************************************

Reply via email to