summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module20
1 files changed, 6 insertions, 14 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index a8c52d313..087ff7f01 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -2162,22 +2162,14 @@ function node_form_submit($form_id, $form_values) {
// Prepare the node's body:
if ($node->nid) {
- // Check whether the current user has the proper access rights to
- // perform this operation:
- if (node_access('update', $node)) {
- node_save($node);
- watchdog('content', t('@type: updated %title.', array('@type' => t($node->type), '%title' => $node->title)), WATCHDOG_NOTICE, l(t('view'), 'node/'. $node->nid));
- drupal_set_message(t('The %post has been updated.', array ('%post' => node_get_types('name', $node))));
- }
+ node_save($node);
+ watchdog('content', t('@type: updated %title.', array('@type' => t($node->type), '%title' => $node->title)), WATCHDOG_NOTICE, l(t('view'), 'node/'. $node->nid));
+ drupal_set_message(t('The %post has been updated.', array ('%post' => node_get_types('name', $node))));
}
else {
- // Check whether the current user has the proper access rights to
- // perform this operation:
- if (node_access('create', $node)) {
- node_save($node);
- watchdog('content', t('@type: added %title.', array('@type' => t($node->type), '%title' => $node->title)), WATCHDOG_NOTICE, l(t('view'), "node/$node->nid"));
- drupal_set_message(t('Your %post has been created.', array ('%post' => node_get_types('name', $node))));
- }
+ node_save($node);
+ watchdog('content', t('@type: added %title.', array('@type' => t($node->type), '%title' => $node->title)), WATCHDOG_NOTICE, l(t('view'), "node/$node->nid"));
+ drupal_set_message(t('Your %post has been created.', array ('%post' => node_get_types('name', $node))));
}
if ($node->nid) {
if (node_access('view', $node)) {