summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/node.module10
-rw-r--r--modules/node/node.module10
2 files changed, 10 insertions, 10 deletions
diff --git a/modules/node.module b/modules/node.module
index 7e8975530..cbb475500 100644
--- a/modules/node.module
+++ b/modules/node.module
@@ -879,11 +879,11 @@ function node_validate($node, &$error) {
// Validate for normal users:
$node->uid = $user->uid ? $user->uid : 0;
// Force defaults in case people modify the form:
- $node->status = variable_get("node_status_$edit->type", 1);
- $node->promote = variable_get("node_promote_$edit->type", 1);
- $node->moderate = variable_get("node_moderate_$edit->type", 0);
- $node->static = variable_get("node_static_$edit->type", 0);
- $node->revision = variable_get("node_revision_$edit->type", 0);
+ $node->status = variable_get("node_status_$node->type", 1);
+ $node->promote = variable_get("node_promote_$node->type", 1);
+ $node->moderate = variable_get("node_moderate_$node->type", 0);
+ $node->static = variable_get("node_static_$node->type", 0);
+ $node->revision = variable_get("node_revision_$node->type", 0);
unset($node->created);
}
diff --git a/modules/node/node.module b/modules/node/node.module
index 7e8975530..cbb475500 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -879,11 +879,11 @@ function node_validate($node, &$error) {
// Validate for normal users:
$node->uid = $user->uid ? $user->uid : 0;
// Force defaults in case people modify the form:
- $node->status = variable_get("node_status_$edit->type", 1);
- $node->promote = variable_get("node_promote_$edit->type", 1);
- $node->moderate = variable_get("node_moderate_$edit->type", 0);
- $node->static = variable_get("node_static_$edit->type", 0);
- $node->revision = variable_get("node_revision_$edit->type", 0);
+ $node->status = variable_get("node_status_$node->type", 1);
+ $node->promote = variable_get("node_promote_$node->type", 1);
+ $node->moderate = variable_get("node_moderate_$node->type", 0);
+ $node->static = variable_get("node_static_$node->type", 0);
+ $node->revision = variable_get("node_revision_$node->type", 0);
unset($node->created);
}