summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjokkedk <joakim@jokke.dk>2008-06-23 12:22:41 +0000
committerjokkedk <joakim@jokke.dk>2008-06-23 12:22:41 +0000
commit8d3575e4fd49c3d3cdf536ad39eb36cf8c14790a (patch)
tree650c61e49006d6e941faaa4f09f1c78b03d6716b
parent90374bc8e031a49e27bcce25f81a98f3cf9fd749 (diff)
downloadwebgrind-8d3575e4fd49c3d3cdf536ad39eb36cf8c14790a.zip
webgrind-8d3575e4fd49c3d3cdf536ad39eb36cf8c14790a.tar.gz
webgrind-8d3575e4fd49c3d3cdf536ad39eb36cf8c14790a.tar.bz2
- Fixed incorrect xdebugOutputFormat regex
-rw-r--r--config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.php b/config.php
index b9c0711..1f5f497 100644
--- a/config.php
+++ b/config.php
@@ -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;
}