I will be adding CCK single line text support for the next release.

Comments

dragonwize’s picture

Status: Active » Fixed

Committed to the 6--1 branch.

doublejosh’s picture

Good god what great timing. Looking for this today, committed yesterday. Riding the Drupal wave.
I was pretty unsure where to activate the format to a CCK field.
For others...

You must check the "Filtered text (user selects input format)" option under "Text processing" within the "Configure" for a given CCK field.

I was actually expecting it on the Display Fields configuration area, but this lets it have a bit more user control than just running fields through a format upon display.
I came upon this module looking for a way to filter a node's title. For now I will use the check_markup function and drop it in the node-mytype.tpl.php

check_markup($text, $format = FILTER_FORMAT_DEFAULT, $check = TRUE);

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

doublejosh’s picture