Skip to content

Commit

Permalink
Restore accidentally removed logic from File::read
Browse files Browse the repository at this point in the history
  • Loading branch information
bsweeney committed Dec 17, 2021
1 parent 536d809 commit d6eb326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FontLib/EOT/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function read($n) {

$string = (string) fread($this->f, $n);
$chunks = mb_str_split($string, 2, '8bit');

$chunks = array_map("strrev", $chunks);
return implode("", $chunks);
}

Expand Down

0 comments on commit d6eb326

Please sign in to comment.