diff options
author | jokkedk <joakim@jokke.dk> | 2008-06-23 12:22:41 +0000 |
---|---|---|
committer | jokkedk <joakim@jokke.dk> | 2008-06-23 12:22:41 +0000 |
commit | 8d3575e4fd49c3d3cdf536ad39eb36cf8c14790a (patch) | |
tree | 650c61e49006d6e941faaa4f09f1c78b03d6716b | |
parent | 90374bc8e031a49e27bcce25f81a98f3cf9fd749 (diff) | |
download | webgrind-8d3575e4fd49c3d3cdf536ad39eb36cf8c14790a.zip webgrind-8d3575e4fd49c3d3cdf536ad39eb36cf8c14790a.tar.gz webgrind-8d3575e4fd49c3d3cdf536ad39eb36cf8c14790a.tar.bz2 |
- Fixed incorrect xdebugOutputFormat regex
-rw-r--r-- | config.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ class Webgrind_Config{ if($outputName=='') // Ini value not defined $outputName = '/^cachegrind\.out\.[0-9]+$/'; else - $outputName = '/^'.preg_replace('/(%[^%])+/', '[a-zA-Z0-9%_-]+$/', $outputName); + $outputName = '/^'.preg_replace('/(%[^%])+/', '[a-zA-Z0-9%_-]+', $outputName).'$/'; return $outputName; } |