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).
Comments
Comment #1
robclay commentedOn closer inspection... It DOES work in the Text Area Fields, just not the Text Field.
Comment #2
Steven commentedFilters 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).
Comment #3
Steven commentedMarking as "won't fix" as this is flexinode's problem, not urlfilter's.