Skip to content

Commit

Permalink
[Regmem] Typo in encoding fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Nov 1, 2024
1 parent 1b36682 commit 6d513d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/docs/regmem/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ function _load_file($f) {
preg_match('#encoding="([^"]*)"#', $file, $m);
$encoding = $m[1];
if ($encoding == 'ISO-8859-1') {
$file = @iconv('iso-8859-1', 'utf-8', $out);
$file = @iconv('iso-8859-1', 'utf-8', $file);
}
return $file;
}
Expand Down

0 comments on commit 6d513d6

Please sign in to comment.