27a28,29
> 
> if ( !function_exists('display_header') ) :
49a52
> endif;
50a54
> if ( !function_exists('display_setup_form') ) :
80c84,85
< }
---
> }//end function display_setup_form();
> endif;
81a87,95
> if ( !function_exists('check_requirements') ) :
> /**
>  * Initial check if blog is installed and other requirements
>  *
>  * @package WordPress
>  * @subpackage Installer
>  */
> function check_requirements() {
> global $wpdb;
84d97
< 
100a114,137
> }//end function check_blog_installed();
> endif;
> check_requirements();
> 
> if ( !function_exists('step_0') ) :
> /**
>  * Function for step 0
>  *
>  * @package WordPress
>  * @subpackage Installer
>  */
> function step_0() {
> step_1();
> }//end function step_0();
> endif;
> 
> if ( !function_exists('step_1') ) :
> /**
>  * Function for step 1
>  *
>  * @package WordPress
>  * @subpackage Installer
>  */
> function step_1() {
102,104d138
< switch($step) {
< 	case 0:
< 	case 1: // in case people are directly linking to this
114,115d147
< 
< 
118,119c150,161
< 		break;
< 	case 2:
---
> }//end function step_1();
> endif;
> 
> if ( !function_exists('step_2') ) :
> /**
>  * Function for step 2
>  *
>  * @package WordPress
>  * @subpackage Installer
>  */
> function step_2() {
> global $wpdb;
168c210,223
< 		break;
---
> }//end function step_2();
> endif;
> 
> 
> switch($step) {
> 	case 0:
>     step_0();
>     break;
> 	case 1: // in case people are directly linking to this
>     step_1();
>     break;
> 	case 2:
>     step_2();
>     break;
169a225,235
> 
> 
> if ( !function_exists('display_footer') ) :
> /**
>  * Display install footer.
>  *
>  * @package WordPress
>  * @subpackage Installer
>  */
> 
> function display_footer() {
171,173c237,244
< <script type="text/javascript">var t = document.getElementById('weblog_title'); if (t){ t.focus(); }</script>
< </body>
< </html>
---
>   <script type="text/javascript">var t = document.getElementById('weblog_title'); if (t){ t.focus(); }</script>
>   </body>
>   </html>
> <?php }//end function display_footer();
> endif;
> 
> display_footer();
> ?>
