Fixed bug in translation functions of the calculation engine

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@68887 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker 2011-02-18 17:39:58 +00:00
parent 4b0852428d
commit 2dcead065d
1 changed files with 1 additions and 1 deletions

View File

@ -1987,7 +1987,7 @@ class PHPExcel_Calculation {
} else { } else {
// If there's no quoted strings, then we do a simple count/replace // If there's no quoted strings, then we do a simple count/replace
$formula = preg_replace($from,$to,$formula); $formula = preg_replace($from,$to,$formula);
$formula = self::_translateSeparator($fromSeparator,$toSeparator,$formula); $formula = self::_translateSeparator($fromSeparator,$toSeparator,$formula,$inBraces);
} }
} }