Reputation: 1279
How to enable textarea
tags in HTMLPurifier?
I tried with:
$config->set('HTML.Allowed', 'textarea');
But it doesnt work. How to solve this problem?
Upvotes: 0
Views: 275
Reputation: 26762
textarea is not supported unless you load the Forms module. This module gets loaded if you turn on %HTML.Trusted, but this directive also turns on JavaScript and should only be used for trusted users.
Upvotes: 2