Reviewed & tested by the community
Project:
Node in CCK
Version:
6.x-1.0-beta1
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
1 Dec 2009 at 15:29 UTC
Updated:
11 Oct 2011 at 23:56 UTC
Module doesn't have support for multilanguage nodes, here is my fix in _nodeincck_get_node function:
global $language;
$t = translation_node_get_translations($field['nodeincck_nid']);
if (isset($t[$language->language])) {
$field['nodeincck_nid'] = $t[$language->language]->nid;
}
Insert first of all.
Comments
Comment #1
mattyoung commentedcommitted and released in 'dev'
Thanks for the code and please test.
Comment #2
mattyoung commented~
Comment #3
mattyoung commented~
Comment #5
morybel commentedThis fix worked for me. Thanks