Make WordPress Core

Changeset 14393


Ignore:
Timestamp:
05/03/2010 07:33:23 PM (13 years ago)
Author:
nacin
Message:

Remove unused vars. props TobiasBg. fixes #13228.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/theme.php

    r14371 r14393  
    230230   
    231231    // Only notify if both are missing as you can use one or the other 
    232     if ( ! ( $comment = locate_template( array( 'comments.php' ) ) ) && ! ( $comment_popup = locate_template( array( 'comments-popup.php' ) ) ) ) {
     232    if ( ! locate_template( array( 'comments.php' ) ) && ! locate_template( array( 'comments-popup.php' ) ) ) {
    233233        $files[] = 'comments.php';
    234234        $files[] = 'comments-popup.php';
Note: See TracChangeset for help on using the changeset viewer.