Changeset 1733
- Timestamp:
- 08/27/08 22:18:40 (4 months ago)
- Files:
-
- coldbox/trunk/system/interceptors/ses.cfc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/system/interceptors/ses.cfc
r1728 r1733 274 274 <!--- Replace -numeric with regex equiv ---> 275 275 <cfset thisPattern = REReplace(thisRoute.pattern, ":.[^-]*?/", "([^/]+?)/", "all") /> 276 <cfset thisPattern = REReplace(thisPattern, ":.*?-numeric/", "( ([0-9]+)+?)/", "all") />276 <cfset thisPattern = REReplace(thisPattern, ":.*?-numeric/", "([0-9]+?)/", "all") /> 277 277 278 278 <!--- Try to match this route against the URL ---> 279 279 <cfset match = REFindNoCase(thisPattern,requestString,1,true) /> 280 280 <cfdump var="#requestString#"><cfabort> 281 281 <!--- If a match was made, use the result to route the request ---> 282 282 <cfif (match.len[1] IS NOT 0 AND getProperty('looseMatching')) OR
