source: trunk/wp-blog-header.php @ 19712

Revision 19712, 271 bytes checked in by ryan, 5 weeks ago (diff)

Lose EOF ?>. Clean up EOF newlines. fixes #12307

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2/**
3 * Loads the WordPress environment and template.
4 *
5 * @package WordPress
6 */
7
8if ( !isset($wp_did_header) ) {
9
10        $wp_did_header = true;
11
12        require_once( dirname(__FILE__) . '/wp-load.php' );
13
14        wp();
15
16        require_once( ABSPATH . WPINC . '/template-loader.php' );
17
18}
Note: See TracBrowser for help on using the repository browser.