From 6d3cdb208c0159450465884a2d8607a33cfd4815 Mon Sep 17 00:00:00 2001
From: Shish <shish@shishnet.org>
Date: Sat, 24 Dec 2011 21:55:33 +0000
Subject: [PATCH] those functions aren't /called/ unless coverage is set ._.;;

---
 core/util.inc.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/util.inc.php b/core/util.inc.php
index 545b6b8d..32523ac4 100644
--- a/core/util.inc.php
+++ b/core/util.inc.php
@@ -1031,14 +1031,14 @@ function _end_cache() {
 \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
 
 function _start_coverage() {
-	if(COVERAGE && function_exists("xdebug_start_code_coverage")) {
+	if(function_exists("xdebug_start_code_coverage")) {
 		#xdebug_start_code_coverage(XDEBUG_CC_UNUSED|XDEBUG_CC_DEAD_CODE);
 		xdebug_start_code_coverage(XDEBUG_CC_UNUSED);
 	}
 }
 
 function _end_coverage() {
-	if(COVERAGE && function_exists("xdebug_get_code_coverage")) {
+	if(function_exists("xdebug_get_code_coverage")) {
 		if(!file_exists("data/coverage")) mkdir("data/coverage");
 		$n = 0;
 		$t = time();