I had tried skip_filter
So I tried again and discovered the problem.
In rails 2.3.x
skip_before_filter could take an array of symbols
In rails 3 it can not
eg.
Rails 2.3.x the following works but does not work in rails 3
skip_before_filter [:domain_and_site, :multisite_scope,
:redirect_to_main_domain]
skip_filter [:domain_and_site, :multisite_scope,
:redirect_to_main_domain]
In rails 3 they need to be as follows
skip_before_filter :domain_and_site, :multisite_scope,
:redirect_to_main_domain
skip_filter :domain_and_site, :multisite_scope, :redirect_to_main_domain
Cheers
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.