From 3b042772a99518cbbb102dbe224aeabf12f45f28 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Wed, 2 Apr 2008 13:19:00 +0000 Subject: [PATCH] Oops. Personal debug code that slipped in. git-svn-id: http://svn.automattic.com/wordpress/branches/2.3@7587 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 9a2b019631..e582fc1c68 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -495,11 +495,7 @@ function &get_terms($taxonomies, $args = '') { } $key = md5( serialize( $args ) . serialize( $taxonomies ) ); - if ( $_GET['taxonomy_test'] ) - $timer_start = time(); if ( $cache = wp_cache_get( 'get_terms', 'terms' ) ) { - if ( $_GET['taxonomy_test'] ) - mail('markjaquith@gmail.com', 'MM Debug ' . $timer_start - time() , print_r($cache, true)); if ( isset( $cache[ $key ] ) ) return apply_filters('get_terms', $cache[$key], $taxonomies, $args); }