On Sun, Sep 27, 2009 at 10:17 AM, andreacfm <[email protected]> wrote:
> 33: <cfif structKeyExists(arguments, "mockCgiScope")>
> 34: <cfset pathArray = listToArray
> (arguments.mockCgiScope.PATH_INFO, "/") />
> 35: <cfelseif arguments.mockCgiScope.PATH_INFO NEQ
> arguments.mockCgiScope.SCRIPT_NAME>
Looks like a bug in SesUrlManager.cfc - it tests if mockCgiScope is a
member of arguments and if it IS NOT it attempts to dereference
arguments.mockCgiScope!
It seems to be fixed in SVN:
<cfif structKeyExists(arguments, "mockCgiScope")>
<cfset pathArray =
listToArray(arguments.mockCgiScope.PATH_INFO, "/") />
<cfelseif cgi.PATH_INFO NEQ cgi.SCRIPT_NAME>
<cfset pathArray = listToArray(cgi.PATH_INFO, "/") />
</cfif>
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/
"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood
--~--~---------~--~----~------------~-------~--~----~
Model-Glue Sites:
Home Page: http://www.model-glue.com
Documentation: http://docs.model-glue.com
Bug Tracker: http://bugs.model-glue.com
Blog: http://www.model-glue.com/blog
You received this message because you are subscribed to the Google
Groups "model-glue" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/model-glue?hl=en
-~----------~----~----~----~------~----~------~--~---