Index: modules/blog.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blog.module,v
retrieving revision 1.244
diff -F^f -u -r1.244 blog.module
--- modules/blog.module	21 Feb 2006 18:46:54 -0000	1.244
+++ modules/blog.module	27 Mar 2006 16:13:36 -0000
@@ -196,13 +196,6 @@ function blog_page_last() {
 }
 
 /**
- * Implementation of hook_validate().
- */
-function blog_validate($node) {
-  node_validate_title($node);
-}
-
-/**
  * Implementation of hook_form().
  */
 function blog_form(&$node) {
@@ -300,7 +293,7 @@ function blog_block($op = 'list', $delta
     if (user_access('access content')) {
       $result = db_query_range(db_rewrite_sql("SELECT n.nid, n.title, n.created FROM {node} n WHERE n.type = 'blog' AND n.status = 1 ORDER BY n.created DESC"), 0, 10);
       if (db_num_rows($result)) {
-        $block['content'] = node_title_list($result);
+        $block['content'] = node_preparelist($result);
         $block['content'] .= '<div class="more-link">'. l(t('more'), 'blog', array('title' => t('Read the latest blog entries.'))) .'</div>';
         $block['subject'] = t('Recent blog posts');
         return $block;
Index: modules/book.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/book.module,v
retrieving revision 1.358
diff -F^f -u -r1.358 book.module
--- modules/book.module	26 Mar 2006 19:35:05 -0000	1.358
+++ modules/book.module	27 Mar 2006 16:13:37 -0000
@@ -237,13 +237,6 @@ function book_submit(&$node) {
 }
 
 /**
- * Implementation of hook_validate().
- */
-function book_validate($node) {
-  node_validate_title($node);
-}
-
-/**
  * Implementation of hook_form().
  */
 function book_form(&$node) {
Index: modules/forum.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/forum.module,v
retrieving revision 1.321
diff -F^f -u -r1.321 forum.module
--- modules/forum.module	25 Mar 2006 10:52:40 -0000	1.321
+++ modules/forum.module	27 Mar 2006 16:13:38 -0000
@@ -326,8 +326,6 @@ function forum_submit(&$node) {
  * vocabulary is selected, not a "container" term.
  */
 function forum_validate($node) {
-  node_validate_title($node,t('You have to specify a subject.'));
-
   if ($node->taxonomy) {
     // Extract the node's proper topic ID.
     $vocabulary = variable_get('forum_nav_vocabulary', '');
Index: modules/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node.module,v
retrieving revision 1.622
diff -F^f -u -r1.622 node.module
--- modules/node.module	26 Mar 2006 19:31:00 -0000	1.622
+++ modules/node.module	27 Mar 2006 16:13:40 -0000
@@ -1647,18 +1647,6 @@ function node_validate($node) {
   node_invoke_nodeapi($node, 'validate');
 }
 
-/**
- * Validate the title of a node
- */
-function node_validate_title($node, $message = NULL) {
-  // Validate the title field.
-  if (isset($node->title)) {
-    if (trim($node->title) == '') {
-      form_set_error('title', isset($message) ? $message : t('You have to specify a title.'));
-    }
-  }
-}
-
 function node_form_validate($form_id, $edit) {
   node_validate($edit);
 }
Index: modules/page.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/page.module,v
retrieving revision 1.153
diff -F^f -u -r1.153 page.module
--- modules/page.module	21 Feb 2006 18:46:54 -0000	1.153
+++ modules/page.module	27 Mar 2006 16:13:40 -0000
@@ -80,13 +80,6 @@ function page_menu($may_cache) {
 }
 
 /**
- * Implementation of hook_validate().
- */
-function page_validate($node) {
-  node_validate_title($node);
-}
-
-/**
  * Implementation of hook_form().
  */
 function page_form(&$node) {
Index: modules/story.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/story.module,v
retrieving revision 1.185
diff -F^f -u -r1.185 story.module
--- modules/story.module	21 Feb 2006 18:46:54 -0000	1.185
+++ modules/story.module	27 Mar 2006 16:13:40 -0000
@@ -75,13 +75,6 @@ function story_menu($may_cache) {
 }
 
 /**
- * Implementation of hook_validate().
- */
-function story_validate($node) {
-  node_validate_title($node);
-}
-
-/**
  * Implementation of hook_form().
  */
 function story_form(&$node) {
