Changeset 7991 for trunk/index.php

Show
Ignore:
Timestamp:
05/25/08 15:50:15 (6 months ago)
Author:
ryan
Message:

File file level phpdoc from jacobsantos. see #7037

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/index.php

    r4495 r7991  
    11<?php 
    2 /* Short and sweet */ 
     2/** 
     3 * Front to the WordPress application. Most of WordPress is loaded through this 
     4 * file. This file doesn't do anything, but loads the file which does and tells 
     5 * WordPress to load the theme. 
     6 * 
     7 * @package WordPress 
     8 */ 
     9 
     10/** 
     11 * Tells WordPress to load the WordPress theme and output it. 
     12 * 
     13 * @var bool 
     14 */ 
    315define('WP_USE_THEMES', true); 
     16 
     17/** Loads the WordPress Environment and Template */ 
    418require('./wp-blog-header.php'); 
    519?>