Skip to content

Commit

Permalink
Make AbstractRequest.if_modified_sense return nil if the header could…
Browse files Browse the repository at this point in the history
… not be parsed
  • Loading branch information
jamis committed Aug 19, 2008
1 parent bd7edcf commit 6e4ea66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
*Edge*

* Made AbstractRequest.if_modified_sense return nil if the header could not be parsed [Jamis Buck]

* Added back ActionController::Base.allow_concurrency flag [Josh Peek]

* AbstractRequest.relative_url_root is no longer automatically configured by a HTTP header. It can now be set in your configuration environment with config.action_controller.relative_url_root [Josh Peek]
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_controller/request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def accepts

def if_modified_since
if since = env['HTTP_IF_MODIFIED_SINCE']
Time.rfc2822(since)
Time.rfc2822(since) rescue nil
end
end
memoize :if_modified_since
Expand Down

0 comments on commit 6e4ea66

Please sign in to comment.