Merge branch 'main' of git.ebene.ovh:ebene/radiantrh
This commit is contained in:
commit
3172f1747d
|
|
@ -2760,7 +2760,7 @@ class PHPExcel_Calculation {
|
|||
//echo 'Assessing Expression '.substr($formula, $index),PHP_EOL;
|
||||
$opCharacter = $formula[$index]; // Get the first character of the value at the current index position
|
||||
//echo 'Initial character of expression block is '.$opCharacter,PHP_EOL;
|
||||
if ((isset(self::$_comparisonOperators[$opCharacter])) && (strlen($formula) > $index) && (isset(self::$_comparisonOperators[$formula{$index+1}]))) {
|
||||
if ((isset(self::$_comparisonOperators[$opCharacter])) && (strlen($formula) > $index) && (isset(self::$_comparisonOperators[$formula[$index+1]]))) {
|
||||
$opCharacter .= $formula{++$index};
|
||||
//echo 'Initial character of expression block is comparison operator '.$opCharacter.PHP_EOL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user