diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-09-21 01:59:44 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-09-21 01:59:44 (GMT) |
commit | 82ec71611d389b1a604bd89fc6da3326da54a4a6 (patch) | |
tree | 8322ae7aa513caeaa6188e7418319aa57d35e4ea | |
parent | 1ab7c5caad8e9375e050400b83ae94469e620941 (diff) |
remove doubel encoded UTF-8
-rwxr-xr-x | authtoken.json | 4 | ||||
-rwxr-xr-x | listdropboxes.cgi | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/authtoken.json b/authtoken.json index 1f0c415..c65eb64 100755 --- a/authtoken.json +++ b/authtoken.json @@ -5,10 +5,6 @@ use File::Basename; use lib dirname( __FILE__ ) . '/lib'; use rddb; -binmode(STDIN, ":utf8"); -binmode(STDOUT, ":utf8"); -binmode(STDERR, ":utf8"); - my $status = 'ERROR'; my $errorstring = 'unknown'; my $username = ''; diff --git a/listdropboxes.cgi b/listdropboxes.cgi index 0d50928..18c5902 100755 --- a/listdropboxes.cgi +++ b/listdropboxes.cgi @@ -6,10 +6,6 @@ use File::Basename; use lib dirname( __FILE__ ) . '/lib'; use rddb; -binmode(STDIN, ":utf8"); -binmode(STDOUT, ":utf8"); -binmode(STDERR, ":utf8"); - my $status = 'ERROR'; my $errorstring = 'unknown'; my $responsecode = 500; |