--- drupal-cvs/drupal/modules/node.module 2005-07-21 16:09:39.000000000 -0400 +++ Sites/drupal/modules/node.module 2005-07-27 15:28:02.000000000 -0400 @@ -1386,9 +1386,11 @@ // Allow the following fields to be initialized via $_GET (e.g. for use // with a "blog it" bookmarklet): - foreach (array('title', 'teaser', 'body') as $field) { - if ($_GET['edit'][$field]) { - $node[$field] = $_GET['edit'][$field]; + if ($_GET['edit']) { + foreach (array_keys($_GET['edit']) as $field) { + if ($_GET['edit'][$field]) { + $node[$field] = $_GET['edit'][$field]; + } } } $output = node_form($node);