From 1e0685711b9b3ed03002bf190c3d4d4b661f372a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 20 May 2015 15:09:45 +0200 Subject: [PATCH] fixed typo --- src/Symfony/Component/Debug/ExceptionHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Debug/ExceptionHandler.php b/src/Symfony/Component/Debug/ExceptionHandler.php index 8fb345da70..bc66741bc8 100644 --- a/src/Symfony/Component/Debug/ExceptionHandler.php +++ b/src/Symfony/Component/Debug/ExceptionHandler.php @@ -380,7 +380,7 @@ EOF; $file = preg_match('#[^/\\\\]*$#', $path, $file) ? $file[0] : $path; if ($linkFormat = $this->fileLinkFormat) { - $link = strtr($this->escapeHtml($linkFormat), array('%f' => $path, , '%l' => (int) $line)); + $link = strtr($this->escapeHtml($linkFormat), array('%f' => $path, '%l' => (int) $line)); return sprintf(' in %s line %d', $link, $file, $line); }