Changeset 1315
- Timestamp:
- 05/19/05 17:14:35 (3 years ago)
- Files:
-
- trunk/actionpack/lib/action_controller/filters.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_controller/filters.rb
r1238 r1315 70 70 # 71 71 # class WeblogController < ActionController::Base 72 # before_filter { |controller| returnfalse if controller.params["stop_action"] }72 # before_filter { |controller| false if controller.params["stop_action"] } 73 73 # end 74 74 #