From 8578b5a4ee8304f18a3809d739b2a436426cced5 Mon Sep 17 00:00:00 2001 From: Fredrick Brennan Date: Fri, 27 Mar 2015 18:49:17 +0800 Subject: [PATCH] Fix mod.php error when $config[debug] --- mod.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mod.php b/mod.php index b1eb317f..bc9d6057 100644 --- a/mod.php +++ b/mod.php @@ -136,6 +136,8 @@ foreach ($pages as $key => $callback) { } $pages = $new_pages; +$parse_start_time = microtime(true); + foreach ($pages as $uri => $handler) { if (preg_match($uri, $query, $matches)) { $matches = array_slice($matches, 1);