Remove unused vars. props TobiasBg. fixes #13228.

git-svn-id: https://develop.svn.wordpress.org/trunk@14393 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-05-03 19:33:23 +00:00
parent db93b01df3
commit 2f0d602eeb
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ function _check_theme_deprecated_files() {
$files[] = 'sidebar.php';
// Only notify if both are missing as you can use one or the other
if ( ! ( $comment = locate_template( array( 'comments.php' ) ) ) && ! ( $comment_popup = locate_template( array( 'comments-popup.php' ) ) ) ) {
if ( ! locate_template( array( 'comments.php' ) ) && ! locate_template( array( 'comments-popup.php' ) ) ) {
$files[] = 'comments.php';
$files[] = 'comments-popup.php';
}