Displaying 1 result from an estimated 1 matches for "theme_imag".
Did you mean:
theme_images
2007 Mar 06
4
Rails 1.2 / Theme support plugin issue: Fix
...heme_routes
yield Mapper.new(self)
named_routes.install
end
# In create_theme_routes method
- replace named_route with add_named_route
- replace connect with add_route
So your create_theme_routes should look like this
def create_theme_routes
add_named_route ''theme_images'', "/themes/:theme/images/:filename",
:controller=>''theme'', :action=>''images''
add_named_route ''theme_stylesheets'',
"/themes/:theme/stylesheets/:filename", :controller=>''theme'',
:action...