Perform empty() check on $doing_rss to avoid warning.

git-svn-id: https://develop.svn.wordpress.org/trunk@1892 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2004-11-27 04:47:54 +00:00
parent 226f415935
commit 89fb8beb57
2 changed files with 11 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
<?php
if (! $doing_rss) {
if (empty($doing_rss)) {
$doing_rss = 1;
require('wp-blog-header.php');
}