diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-12-20 06:28:54 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-12-20 06:28:54 +0000 |
commit | 492d569157a95c0ffb0dff47b72788e10a65bb79 (patch) | |
tree | 88da3d68fdb9e16bc9ff293e75f254713a4914ab | |
parent | ede019296e845a88172d7542c7e50dd7448e0cb4 (diff) | |
download | brdo-492d569157a95c0ffb0dff47b72788e10a65bb79.tar.gz brdo-492d569157a95c0ffb0dff47b72788e10a65bb79.tar.bz2 |
#104349: Remove erronous 'break' statement
-rw-r--r-- | modules/node/content_types.inc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index c74b33f2c..80dd1dc5d 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -243,7 +243,6 @@ function node_type_form_validate($form_id, $form_values) { if (isset($names[$type->name]) && $names[$type->name] != $old_type) { form_set_error('name', t('The human-readable name %name is already taken.', array('%name' => $names[$type->name]))); - break; } } |