Changeset 5862
- Timestamp:
- 01/05/07 20:46:34 (2 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/filters.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r5859 r5862 1 1 *SVN* 2 3 * Slight doc tweak to #prepend_filter. Closes #6493 [Jeremy Voorhis] 2 4 3 5 * Add more extensive documentation to the AssetTagHelper. Closes #6452 [Bob Silva] trunk/actionpack/lib/action_controller/filters.rb
r5715 r5862 82 82 # beginning of their respective chain and executed before the rest. For example: 83 83 # 84 # class ShoppingController 84 # class ShoppingController < ActionController::Base 85 85 # before_filter :verify_open_shop 86 86 # 87 # class CheckoutController 87 # class CheckoutController < ShoppingController 88 88 # prepend_before_filter :ensure_items_in_cart, :ensure_items_in_stock 89 89 #