Skip to content

Commit

Permalink
Files for the command line now use one letter instead of two, keeping…
Browse files Browse the repository at this point in the history
… compatibility with previous version of pdftk
  • Loading branch information
Alex Hernandez committed Jul 5, 2013
1 parent 0683ca8 commit 37363c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shuble/Slurpy/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 37363c8

Please sign in to comment.