mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2025-04-03 13:23:37 +03:00
Further fix to regexp for preventing update of absolute rows when adjusting row references
This commit is contained in:
parent
94a1a69373
commit
2bd1c10b21
1 changed files with 1 additions and 1 deletions
|
@ -677,7 +677,7 @@ class PHPExcel_ReferenceHelper
|
|||
$cellIndex = $column.$row;
|
||||
|
||||
$newCellTokens[$cellIndex] = preg_quote($toString);
|
||||
$cellTokens[$cellIndex] = '/(?<!\d)'.preg_quote($fromString).'(?!\d)/i';
|
||||
$cellTokens[$cellIndex] = '/(?<!\d\$\!)'.preg_quote($fromString).'(?!\d)/i';
|
||||
++$adjustCount;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue