Skip to content

Commit

Permalink
Merge pull request #192 from dmarkow/master
Browse files Browse the repository at this point in the history
Explicitly convert session to hash
  • Loading branch information
smartinez87 committed Dec 9, 2013
2 parents 67eb97c + f4ba17d commit 8a8c6a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
</li>
<li>
<strong>data: </strong>
<span><%= raw PP.pp(@request.session, "") %></span>
<span><%= raw PP.pp(@request.session.to_hash, "") %></span>
</li>
</ul>
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* session id: <%= @request.ssl? ? "[FILTERED]" : (raw (@request.session['session_id'] || (@request.env["rack.session.options"] and @request.env["rack.session.options"][:id])).inspect.html_safe) %>
* data: <%= raw PP.pp(@request.session, "") %>
* data: <%= raw PP.pp(@request.session.to_hash, "") %>

0 comments on commit 8a8c6a4

Please sign in to comment.