root/tags/1.5.1/wp-blog-header.php

Revision 1218, 408 bytes (checked in by donncha, 8 months ago)

Merged with WordPress? 2.5, unstable, only for testing

  • Property svn:eol-style set to native
Line 
1 <?php
2
3 if (! isset($wp_did_header)):
4 if ( !file_exists( dirname(__FILE__) . '/wp-config.php') ) {
5     if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) $path = '';
6     else $path = 'wp-admin/';
7     include( "index-install.php" ); // install WPMU!
8     die();
9 }
10
11 $wp_did_header = true;
12
13 require_once( dirname(__FILE__) . '/wp-config.php');
14
15 wp();
16
17 require_once(ABSPATH . WPINC . '/template-loader.php');
18
19 endif;
20
21 ?>
22
Note: See TracBrowser for help on using the browser.