Skip to content

Commit

Permalink
Fix UTF-8 in AJAXGUI
Browse files Browse the repository at this point in the history
  • Loading branch information
stapelberg committed Apr 8, 2011
1 parent b46c726 commit 645e054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Server/AJAXGUI/index.html
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Bullshit!</title>
<meta charset="utf8">
<meta charset="utf-8">
<script type="text/javascript" src="jquery-1.5.1.js"></script>
<script type="text/javascript" src="jquery.ba-bbq.min.js"></script>
<script type="text/javascript" src="bingo.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion Server/lib/BBServer/Handler/GUI.pm
Expand Up @@ -15,7 +15,7 @@ __PACKAGE__->asynchronous(1);
sub get {
my ($self, $query) = @_;

my $contents = io('AJAXGUI/' . $query)->slurp;
my $contents = io('AJAXGUI/' . $query)->utf8->slurp;
$self->write($contents);
$self->finish;
}
Expand Down

0 comments on commit 645e054

Please sign in to comment.