From aa5c0170cc99b424dec158d75c4415df81fd107f Mon Sep 17 00:00:00 2001 From: Christopher Shepherd Date: Wed, 25 May 2016 23:36:04 -0400 Subject: [PATCH] .po handling fix --- Input/Input_PO.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Input/Input_PO.php b/Input/Input_PO.php index b1f8fc7..1412c3e 100644 --- a/Input/Input_PO.php +++ b/Input/Input_PO.php @@ -48,8 +48,7 @@ class Input_PO */ public function getBlocks( $starting_block, $num_blocks ) { - fseek( $fp, $this->image_offset, SEEK_SET ); - fseek( $fp, $starting_block*512 ); + fseek( $fp, $starting_block*512, SEEK_SET ); $data = ''; for( $blk=0;$blk<$num_blocks;$blk++ ) {