Changeset 8314
- Timestamp:
- 12/05/07 22:04:02 (1 year 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
r8235 r8314 298 298 end 299 299 300 # Returns a hash with the parameters used to form the path of the request 300 # Returns a hash with the parameters used to form the path of the request. 301 # Returned hash keys are strings. See <tt>symbolized_path_parameters</tt> for symbolized keys. 301 302 # 302 303 # Example: 303 304 # 304 # { :action => 'my_action', :controller=> 'my_controller'}305 # {'action' => 'my_action', 'controller' => 'my_controller'} 305 306 def path_parameters 306 307 @path_parameters ||= {}