Make WordPress Core

Changeset 7587


Ignore:
Timestamp:
04/02/2008 01:19:00 PM (17 years ago)
Author:
markjaquith
Message:

Oops. Personal debug code that slipped in.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.3/wp-includes/taxonomy.php

    r7586 r7587  
    496496
    497497    $key = md5( serialize( $args ) . serialize( $taxonomies ) );
    498     if ( $_GET['taxonomy_test'] )
    499         $timer_start = time();
    500498    if ( $cache = wp_cache_get( 'get_terms', 'terms' ) ) {
    501         if ( $_GET['taxonomy_test'] )
    502             mail('markjaquith@gmail.com', 'MM Debug ' . $timer_start - time() , print_r($cache, true));
    503499        if ( isset( $cache[ $key ] ) )
    504500            return apply_filters('get_terms', $cache[$key], $taxonomies, $args);
Note: See TracChangeset for help on using the changeset viewer.