Bugfix: Calc engine needs to use Ungreedy regexp in parser

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@65727 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Mark Baker 2010-12-24 12:08:31 +00:00
parent 7a792cd566
commit d027a3d0a7
1 changed files with 1 additions and 1 deletions

View File

@ -2613,7 +2613,7 @@ class PHPExcel_Calculation {
'|'.self::CALCULATION_REGEXP_CELLREF.
'|'.self::CALCULATION_REGEXP_NAMEDRANGE.
'|'.self::CALCULATION_REGEXP_ERROR.
')/siU';
')/si';
// Start with initialisation
$index = 0;