You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of actionpack-action_caching 1.2.0, I’m getting escaped HTML for the output of a caches_action action when there is no cache to serve. When the action is already cached, the HTML output is not escaped and pages look/function as expected.
class HomeController < ApplicationController
caches_action :index, layout: false
…
end
Reverting to actionpack-action_caching 1.1.1 restores the expected behavior (html not escaped whether action output is cached or not).
Bodacious, yaxhpal, stephanpavlovic, mzxrai and skorfmann