From 327b6c6ce31942963efcc03d5aea2981250360f2 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 29 Apr 2013 15:05:22 -0700 Subject: [PATCH] Revert "Bug 10019: Fix for userid containing UTF8 chars" This reverts commit 7e90e1524f7e586dac0f98241ace430e5cbeac7f. Rolling back bug 6554 work until we have more comprehensive tests. --- C4/Auth.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index 837ff12a57..811151b628 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -675,7 +675,6 @@ sub checkauth { $ip = $session->param('ip'); $lasttime = $session->param('lasttime'); $userid = $session->param('id'); - utf8::decode($userid); $sessiontype = $session->param('sessiontype') || ''; } if ( ( ($query->param('koha_login_context')) && ($query->param('userid') ne $session->param('id')) ) @@ -751,7 +750,6 @@ sub checkauth { -HttpOnly => 1 ); $userid = $query->param('userid'); - utf8::decode($userid); if ( ( $cas && $query->param('ticket') ) || $userid || ( my $pki_field = C4::Context->preference('AllowPKIAuth') ) ne -- 2.39.2