From 2dcead065d336dcac7b47acc78245d82abb2f21d Mon Sep 17 00:00:00 2001 From: Mark Baker Date: Fri, 18 Feb 2011 17:39:58 +0000 Subject: [PATCH] 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 --- Classes/PHPExcel/Calculation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/PHPExcel/Calculation.php b/Classes/PHPExcel/Calculation.php index 037acf69..cc8ef327 100644 --- a/Classes/PHPExcel/Calculation.php +++ b/Classes/PHPExcel/Calculation.php @@ -1987,7 +1987,7 @@ class PHPExcel_Calculation { } else { // If there's no quoted strings, then we do a simple count/replace $formula = preg_replace($from,$to,$formula); - $formula = self::_translateSeparator($fromSeparator,$toSeparator,$formula); + $formula = self::_translateSeparator($fromSeparator,$toSeparator,$formula,$inBraces); } }