Skip to content

Commit d6eb326

Browse files
committed
Restore accidentally removed logic from File::read
1 parent 536d809 commit d6eb326

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FontLib/EOT/File.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function read($n) {
7575

7676
$string = (string) fread($this->f, $n);
7777
$chunks = mb_str_split($string, 2, '8bit');
78-
78+
$chunks = array_map("strrev", $chunks);
7979
return implode("", $chunks);
8080
}
8181

0 commit comments

Comments
 (0)