diff options
-rw-r--r-- | config.php | 4 | ||||
-rw-r--r-- | index.php | 5 |
2 files changed, 6 insertions, 3 deletions
@@ -5,7 +5,7 @@ * @author Jacob Oettinger * @author Joakim Nygård */ -class Webgrind_Config{ +class Webgrind_Config extends Webgrind_MasterConfig { /** * Automatically check if a newer version of webgrind is available for download */ @@ -45,8 +45,6 @@ class Webgrind_Config{ # BELOW NOT FOR EDITING # ######################### - static $webgrindVersion = '1.01'; - /** * Regex that matches the trace files generated by xdebug */ @@ -4,6 +4,11 @@ * @author Joakim Nygård */ +class Webgrind_MasterConfig +{ + static $webgrindVersion = '1.01'; +} + require 'config.php'; require 'library/FileHandler.php'; |