It was not displayed in IE.
It was displayed when changing from
33 def ssl_request?
34 @controller.request.env['SERVER_PROTOCOL'].downcase == "https"
35 end
41 @controller.headers['Pragma'] = 'public'
50 @controller.headers['Cache-Control'] = 'maxage=1'
to
33 def ssl_request?
34 @controller.request.ssl?
35 end
41 @controller.headers["Pragma"]="private"
50 @controller.headers["Cache-Control"]="private"
It was not displayed in IE.
It was displayed when changing from
to