diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-17 23:27:35 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-17 23:27:35 +0000 |
commit | c8d126becd61d5c871c61f297636c8d5b5b55889 (patch) | |
tree | 990274888c10aa92c0699ff9bd2fcb0a83adb9e1 | |
parent | 71c7b8465cb45a28acd751d9b8f394081bfc6f8a (diff) | |
download | brdo-c8d126becd61d5c871c61f297636c8d5b5b55889.tar.gz brdo-c8d126becd61d5c871c61f297636c8d5b5b55889.tar.bz2 |
- bug fix
-rw-r--r-- | update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php index 01b03b8ed..3d2db1669 100644 --- a/update.php +++ b/update.php @@ -187,7 +187,7 @@ function update_7() { case "book": case "page": case "blog": - node_save($node, array("nid", "body" => $old->body, "teaser" => ($old->abstract ? $old->abstract : node_teaser($old->body_old)))); + node_save($node, array("nid", "body" => $old->body_old, "teaser" => ($old->abstract ? $old->abstract : node_teaser($old->body_old)))); print "updated node $node->nid '$node->title' ($node->type)<br />"; break; default: |