Index: modules/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node.module,v retrieving revision 1.509 diff -u -F^f -r1.509 node.module --- modules/node.module 20 Jul 2005 10:48:20 -0000 1.509 +++ modules/node.module 27 Jul 2005 18:26:08 -0000 @@ -1384,12 +1384,10 @@ function node_add($type) { // Initialize settings: $node = array('uid' => $user->uid, 'name' => $user->name, 'type' => $type); - // Allow the following fields to be initialized via $_GET (e.g. for use + // Allow 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]; - } + foreach ($_GET['edit'] as $field => $value) { + $node[$field] = $value; } $output = node_form($node); drupal_set_title(t('Submit %name', array('%name' => node_invoke($node, 'node_name'))));