diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-04 06:59:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-04 06:59:30 +0000 |
commit | 03be9b6f324dc99b4f3123c702859b0d6f50c092 (patch) | |
tree | 4ca2c20e605ff87de7d17b1ec257de47c469be0a /modules/node/node.module | |
parent | 53eaba45ccc4e5891666febb8df2407ec0175fba (diff) | |
download | brdo-03be9b6f324dc99b4f3123c702859b0d6f50c092.tar.gz brdo-03be9b6f324dc99b4f3123c702859b0d6f50c092.tar.bz2 |
- Patch #83165 by webernet: don't show revision log messages to the world.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 83a6ed06f..a400483df 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -684,13 +684,6 @@ function node_prepare($node, $teaser = FALSE) { '#weight' => 0, ); - if ($node->log != '' && !$teaser) { - $node->content['log_message'] = array( - '#value' => theme('node_log_message', filter_xss($node->log)), - '#weight' => 20, - ); - } - return $node; } |