I have installed the flexinode module. It seems that the urlfilter isn't working on content types I have created.

Comments

robclay’s picture

On closer inspection... It DOES work in the Text Area Fields, just not the Text Field.

Steven’s picture

Filters are never applied to single-line text fields: their content is just escaped and printed (so you can use < and &).

If you want it filters, you'll have to replace the appropriate calls to drupal_specialchars or htmlspecialchars with check_output(), while also passing the right input format along (most likely $node->format, but I'm not too familiar with flexinode).

Steven’s picture

Marking as "won't fix" as this is flexinode's problem, not urlfilter's.