diff --git a/modules/taxonomy.module b/modules/taxonomy.module
index 35bd0e613337039e80f58c0651ad76bed8e857bf..896053039d00b2b0ab146ffd8b2210c47412ab45 100644
--- a/modules/taxonomy.module
+++ b/modules/taxonomy.module
@@ -786,6 +786,9 @@ function taxonomy_node_save($nid, $terms) {
           }
         }
       }
+      else if (is_object($term)) {
+        db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term->tid);
+      }
       else if ($term) {
         db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term);
       }
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 35bd0e613337039e80f58c0651ad76bed8e857bf..896053039d00b2b0ab146ffd8b2210c47412ab45 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -786,6 +786,9 @@ function taxonomy_node_save($nid, $terms) {
           }
         }
       }
+      else if (is_object($term)) {
+        db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term->tid);
+      }
       else if ($term) {
         db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term);
       }