Stop recursive stop recursive stop recursive... Hat tip: Dougal

git-svn-id: https://develop.svn.wordpress.org/trunk@1566 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-08-27 00:38:22 +00:00
parent 530f455bfa
commit 44e22a498a
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
// If a footer.php file exists in the WP root directory we
// use that, otherwise use this default wp-footer.php file.
if ( file_exists(ABSPATH . '/footer.php') ) :
include(ABSPATH . '/footer.php');
include_once(ABSPATH . '/footer.php');
else :
?>
</div>

View File

@ -2,7 +2,7 @@
// If a header.php file exists in the WP root directory we
// use that, otherwise use this default wp-header.php file.
if ( file_exists(ABSPATH . '/header.php') ) :
include(ABSPATH . '/header.php');
include_once(ABSPATH . '/header.php');
else :
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">