--- node.module.old 2006-01-11 16:26:59.000000000 -0500 +++ node.module 2006-01-11 16:32:26.000000000 -0500 @@ -1744,9 +1744,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);