diff --git a/src/Shuble/Slurpy/Factory.php b/src/Shuble/Slurpy/Factory.php index 8b1319e..9dc1bda 100644 --- a/src/Shuble/Slurpy/Factory.php +++ b/src/Shuble/Slurpy/Factory.php @@ -367,6 +367,6 @@ protected function getPageRange($handle, $input) */ protected function generateFileHandle($index) { - return chr(65 + floor($index/26) % 26) . chr(65 + $index % 26); + return chr(65 + $index % 26); } }