fixed typo

This commit is contained in:
Fabien Potencier 2015-05-20 15:09:45 +02:00
parent 165bb00fc1
commit 1e0685711b

View File

@ -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 <a href="%s" title="Go to source">%s line %d</a>', $link, $file, $line);
}