diff --git title.module title.module
index ef793ad..030c55a 100644
--- title.module
+++ title.module
@@ -179,6 +179,18 @@ function title_entitycache_load($entities, $type) {
 }
 
 /**
+ * Implements hook_entitycache_reset().
+ *
+ * If the entity cache is reseted the field sync has to be done again.
+ */
+function title_entitycache_reset($ids, $entity_type) {
+  $sync = &drupal_static('title_entity_sync', array());
+  foreach ($ids as $id) {
+    unset($sync[$entity_type][$id]);
+  }
+}
+
+/**
  * Implements hook_entity_prepare_view().
  *
  * On load synchronization is performed using the current display language. A
