@@ -870,7 +870,7 @@ |
||
870 | 870 | do { |
871 | 871 | $characterValue = ($indexValue % 26) ?: 26; |
872 | 872 | $indexValue = ($indexValue - $characterValue) / 26; |
873 | - $base26 = chr($characterValue + 64).($base26 ?: ''); |
|
873 | + $base26 = chr($characterValue + 64) . ($base26 ?: ''); |
|
874 | 874 | } while ($indexValue > 0); |
875 | 875 | $indexCache[$columnIndex] = $base26; |
876 | 876 | } |