Changeset 8019
- Timestamp:
- 10/26/07 01:04:40 (11 months ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/helpers.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r8018 r8019 1 1 *SVN* 2 3 * Fix incorrect path in helper rdoc. Closes #9926 [viktor tron] 2 4 3 5 * Partials also set 'object' to the default partial variable. #8823 [Nick Retallack, Jeremy Kemper] trunk/actionpack/lib/action_controller/helpers.rb
r7719 r8019 88 88 # helper FooHelper # => includes FooHelper 89 89 # 90 # When the argument is the symbol <tt>:all</tt>, the controller will include sall helpers from91 # <tt>app/ views/helpers/**/*.rb</tt> under +RAILS_ROOT+.90 # When the argument is the symbol <tt>:all</tt>, the controller will include all helpers from 91 # <tt>app/helpers/**/*.rb</tt> under +RAILS_ROOT+. 92 92 # helper :all 93 93 #