Index: wp-includes/default-filters.php
===================================================================
--- wp-includes/default-filters.php	(revision 6914)
+++ wp-includes/default-filters.php	(working copy)
@@ -186,4 +186,8 @@
 add_action('edit_post', 'wp_check_for_changed_slugs');
 add_action('edit_form_advanced', 'wp_remember_old_slug');
 
+// Install information
+add_action('wp_install_getinformation','wp_install_getinformation_title',1);
+add_action('wp_install_getinformation','wp_install_getinformation_email',2);
+add_action('wp_install_getinformation','wp_install_getinformation_ping',3);
 ?>
Index: wp-includes/pluggable.php
===================================================================
--- wp-includes/pluggable.php	(revision 6914)
+++ wp-includes/pluggable.php	(working copy)
@@ -1321,4 +1321,11 @@
 }
 endif;
 
+if (!function_exists('wp_install_information')) :
+function wp_install_information() {
+
+
+}
+endif;
+
 ?>
Index: wp-includes/functions.php
===================================================================
--- wp-includes/functions.php	(revision 6914)
+++ wp-includes/functions.php	(working copy)
@@ -1642,4 +1642,32 @@
 			trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s with no alternative available."), $file, $version ) );
 	}
 }
+
+function wp_install_getinformation_title() {
+		?>
+			<tr>
+            	<th width="33%"><?php _e('Blog title:'); ?></th>
+			    <td><input name="weblog_title" type="text" id="weblog_title" size="25" /></td>
+			</tr>
+		<?php
+}
+
+function wp_install_getinformation_email() {
+		?>
+			<tr>
+            	<th><?php _e('Your e-mail:'); ?></th>
+				<td><input name="admin_email" type="text" id="admin_email" size="25" /></td>
+		    </tr>
+		<?php
+}
+
+function wp_install_getinformation_ping() {
+		?>
+<tr>
+            <td>&nbsp;</td>
+			            <td><label><input type="checkbox" name="blog_public" value="1" checked="checked" /> <?php _e('Allow my blog to appear in search engines like Google and Technorati.'); ?></label></td>
+						        </tr>
+		<?php
+}
+
 ?>
Index: wp-admin/install.php
===================================================================
--- wp-admin/install.php	(revision 6914)
+++ wp-admin/install.php	(working copy)
@@ -46,18 +46,7 @@
 
 <form id="setup" method="post" action="install.php?step=2">
 	<table width="100%">
-		<tr>
-			<th width="33%"><?php _e('Blog title:'); ?></th>
-			<td><input name="weblog_title" type="text" id="weblog_title" size="25" /></td>
-		</tr>
-		<tr>
-			<th><?php _e('Your e-mail:'); ?></th>
-			<td><input name="admin_email" type="text" id="admin_email" size="25" /></td>
-		</tr>
-		<tr>
-			<td>&nbsp;</td>
-			<td><label><input type="checkbox" name="blog_public" value="1" checked="checked" /> <?php _e('Allow my blog to appear in search engines like Google and Technorati.'); ?></label></td>
-		</tr>
+		<?php do_action("wp_install_getinformation"); ?>
 	</table>
 	<p><em><?php _e('Double-check your email address before continuing.'); ?></em></p>
 	<h2 class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress &raquo;'); ?>" /></h2>
@@ -110,4 +99,4 @@
 
 <p id="footer"><?php _e('<a href="http://wordpress.org/">WordPress</a>, personal publishing platform.'); ?></p>
 </body>
-</html>
\ No newline at end of file
+</html>
