Change require to include so the files are only parsed if the statement is evaluated true.

git-svn-id: https://develop.svn.wordpress.org/trunk@2395 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-02-28 17:15:53 +00:00
parent 0634c589f1
commit 0de297805a
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
<?php
if ( defined('WPLANG') && '' != constant('WPLANG') ) {
require_once(ABSPATH . 'wp-includes/streams.php');
require_once(ABSPATH . 'wp-includes/gettext.php');
include_once(ABSPATH . 'wp-includes/streams.php');
include_once(ABSPATH . 'wp-includes/gettext.php');
}
function get_locale() {