Its just a normal method defined in application_helper... I assume its
an instance method of the helper, it is not defined as 'def
self.method'
Its defined as: 'def class_current_controller?'
Its just a normal method defined in application_helper... I assume its
an instance method of the helper, it is not defined as 'def
self.method'
Its defined as: 'def class_current_controller?'
Thanks
Ok the problem was, I am using comatose, and the comatose_admin layout
did not have access to application_helper - solutions was simply to add
"helper 'application'" to comatose_admin_controller.rb
Perhaps there has been a change in rails that means that
application_helper is not available to plugins without declaration?