@@ -3115,7 +3115,7 @@ |
||
3115 | 3115 | // The guts of the lexical parser |
3116 | 3116 | // Loop through the formula extracting each operator and operand in turn |
3117 | 3117 | while (true) { |
3118 | - $opCharacter = $formula[$index]; // Get the first character of the value at the current index position |
|
3118 | + $opCharacter = $formula[$index]; // Get the first character of the value at the current index position |
|
3119 | 3119 | if ((isset(self::$comparisonOperators[$opCharacter])) && (strlen($formula) > $index) && (isset(self::$comparisonOperators[$formula[$index + 1]]))) { |
3120 | 3120 | $opCharacter .= $formula[++$index]; |
3121 | 3121 | } |