From 37363c8bf15f069b29e1de2e45bf8324ea149901 Mon Sep 17 00:00:00 2001 From: Alex Hernandez <alex.hernandez@arkonline.org> Date: Fri, 5 Jul 2013 16:21:29 +0100 Subject: [PATCH] Files for the command line now use one letter instead of two, keeping compatibility with previous version of pdftk --- src/Shuble/Slurpy/Factory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }