views:

268

answers:

1

When clicking on spell check the following error is occuring

undefined method `full_sanitizer' for FckeditorController:Class

in the popup window

Rails Version 2.3.2

FCk Editor Version 0.4.3

A: 

I included the following code in fckcontroller class.Then the problem solved.

include ActionView::Helpers::SanitizeHelper
extend ActionView::Helpers::SanitizeHelper::ClassMethods

This Linkhelps

cdb