From 19e6644f1cd62818fc05d545318cc1e70b081a5c Mon Sep 17 00:00:00 2001 From: Nathaniel <catch@35733.no-reply.drupal.org> Date: Wed, 28 Sep 2011 15:45:23 +0900 Subject: [PATCH] Issue #1282956 by rickmanelius, pgrond | lyricnz: Fixed Node revision log of '0' is ignored. --- modules/node/node.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/node/node.module b/modules/node/node.module index 1b3ec638c8d7..0c3cfb7a0062 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1073,7 +1073,7 @@ function node_save($node) { $node->log = ''; } } - elseif (empty($node->log)) { + elseif (!isset($node->log) || $node->log === '') { // If we are updating an existing node without adding a new revision, we // need to make sure $node->log is unset whenever it is empty. As long as // $node->log is unset, drupal_write_record() will not attempt to update -- GitLab