Fix node update hook broken in the previous commit
authorJakub Skoczen <jakub@indexdata.dk>
Fri, 4 Feb 2011 12:37:39 +0000 (13:37 +0100)
committerJakub Skoczen <jakub@indexdata.dk>
Fri, 4 Feb 2011 12:37:39 +0000 (13:37 +0100)
mkdru.module

index e7541ab..0c9e36b 100644 (file)
@@ -207,7 +207,7 @@ function mkdru_update($node) {
     mkdru_insert($node);
   }
   else {
-    db_query("UPDATE {mkdru} SET pz2_path = '%s', use_sessions = %d, source_max = %d, author_max = %d, subject_max = %d, sp_user = '%s', sp_pass = '%s' WHERE vid = %d", $node->pz2_path, $node->use_sessions, $node->source_max, $node->author_max, $node->subject_max, $node->vid);
+    db_query("UPDATE {mkdru} SET pz2_path = '%s', use_sessions = %d, source_max = %d, author_max = %d, subject_max = %d, sp_user = '%s', sp_pass = '%s' WHERE vid = %d", $node->pz2_path, $node->use_sessions, $node->source_max, $node->author_max, $node->subject_max, $node->sp_user, $node->sp_pass, $node->vid);
   }
 }