Index: modules/blog/blog.install
===================================================================
RCS file: modules/blog/blog.install
diff -N modules/blog/blog.install
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ modules/blog/blog.install	31 Mar 2009 20:27:19 -0000
@@ -0,0 +1 @@
+<?php// $Id$/** * @file blog.install * Contains install and update functions for Blog. */ function blog_update_7000() {  $blog_type = node_get_types('type', 'blog');  $blog_type->old_type = $blog_type->type;  $blog_type->type = 'blog_entry';  node_type_save($blog_type);  return array();}
\ No newline at end of file
