Changeset 236

Show
Ignore:
Timestamp:
05/18/07 18:49:03 (2 years ago)
Author:
e.@brainspl.at
Message:

fix protected ivars in view context

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/merb/merb_view_context.rb

    r193 r236  
    44 
    55module Merb 
    6   PROTECTED_IVARS = %w[@cookies @session @headers @params  
    7              @env @in @status @root @method @request @fingerprint_before 
    8              @_new_cookie @tmpl_ext_cache @body] 
     6  PROTECTED_IVARS = %w[@_new_cookie 
     7                       @method 
     8                       @env 
     9                       @body 
     10                       @_fingerprint_before 
     11                       @pager 
     12                       @session 
     13                       @headers 
     14                       @page 
     15                       @cookies 
     16                       @request 
     17                       @status 
     18                       @_view_context_cache 
     19                       @response 
     20                       @params] 
     21                        
    922  module GlobalHelper 
    1023  end