Changeset 6451
- Timestamp:
- 03/19/07 18:02:24 (2 years ago)
- Files:
-
- trunk/actionpack/lib/action_controller/request.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_controller/request.rb
r6350 r6451 210 210 # Returns the interpreted path to requested resource after all the installation directory of this application was taken into account 211 211 def path 212 path = (uri = request_uri) ? uri.split('?').first : ''212 path = (uri = request_uri) ? uri.split('?').first.to_s : '' 213 213 214 214 # Cut off the path to the installation directory if given