Index: modules/translation/translation.test =================================================================== RCS file: /cvs/drupal/drupal/modules/translation/translation.test,v retrieving revision 1.29 diff -u -r1.29 translation.test --- modules/translation/translation.test 5 Aug 2010 23:53:39 -0000 1.29 +++ modules/translation/translation.test 30 Sep 2010 08:58:49 -0000 @@ -13,7 +13,7 @@ } function setUp() { - parent::setUp('locale', 'translation'); + parent::setUp('locale', 'translation', 'translation_test'); } /** @@ -169,6 +169,7 @@ // Check to make sure that translation was successful. $node = $this->drupalGetNodeByTitle($title); $this->assertTrue($node, t('Node found in database.')); + $this->assertTrue($node->tnid == $nid, t('Translation set id correctly stored.')); return $node; } Index: modules/translation/translation.module =================================================================== RCS file: /cvs/drupal/drupal/modules/translation/translation.module,v retrieving revision 1.84 diff -u -r1.84 translation.module --- modules/translation/translation.module 9 Sep 2010 23:01:48 -0000 1.84 +++ modules/translation/translation.module 30 Sep 2010 08:58:48 -0000 @@ -272,6 +272,8 @@ )) ->condition('nid', $node->nid) ->execute(); + // Save tnid to avoid loss in case of resave. + $node->tnid = $tnid; } } } Index: modules/translation/tests/translation_test.info =================================================================== RCS file: modules/translation/tests/translation_test.info diff -N modules/translation/tests/translation_test.info --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ modules/translation/tests/translation_test.info 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,8 @@ +; $Id$ +name = "Content Translation Test" +description = "Support module for the content translation tests." +core = 7.x +package = Testing +files[] = translation_test.module +version = VERSION +hidden = TRUE Index: modules/translation/tests/translation_test.module =================================================================== RCS file: modules/translation/tests/translation_test.module diff -N modules/translation/tests/translation_test.module --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ modules/translation/tests/translation_test.module 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,14 @@ +