Hello! I get the following error when I enable the CCK translatable text field module:

Fatal error: Call to undefined function text_field_settings() in ...\ttext.module on line 27

The function that gives out the error is

/**
* Implementation of hook_field_settings().
*/
function ttext_field_settings($op, $field) {
//drupal_set_message("DEBUG: ttext_field_settings op=$op");
switch ($op) {
case 'database columns':
return;
default:
return text_field_settings($op, $field);
}
}

how should this be in order to work?

Comments

chrisroditis’s picture

Ok got it, there is an extra dependency to the Translatable Text module, and that is the "CCK text field type". Enabling it first makes the Translatable text work as it should. The thing is, I don't how it works but that's another issue altogether.

jose reyero’s picture

Status: Active » Closed (won't fix)

This was an experimental module, it won't be maintained anymore.