.po handling fix

This commit is contained in:
Christopher Shepherd 2016-05-25 23:36:04 -04:00
parent 0891665c81
commit aa5c0170cc
1 changed files with 1 additions and 2 deletions

View File

@ -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++ )
{