# File lib/acts_as_filterable.rb, line 143
        def read_attribute(name)
          return old_read_attribute(name) if !Thread.current[:eval_access_control]
          if !self.visible?
            raise ActiveRecord::RecordNotFound
          end
          attr = old_read_attribute(name)
          return attr
        end