Revert "Bug 10074 - Encoding problems at login time"
This reverts commit 5805b5f363
.
Rolling back bug 6554 work until we have more comprehensive tests.
This commit is contained in:
parent
abe349ed6c
commit
3536b10acf
1 changed files with 8 additions and 5 deletions
13
C4/Auth.pm
13
C4/Auth.pm
|
@ -19,7 +19,6 @@ package C4::Auth;
|
|||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Digest::MD5 qw(md5_base64);
|
||||
use Storable qw(thaw freeze);
|
||||
use URI::Escape;
|
||||
|
@ -1066,10 +1065,14 @@ sub checkauth {
|
|||
LibraryName => C4::Context->preference("LibraryName"),
|
||||
);
|
||||
$template->param( %info );
|
||||
|
||||
require C4::Output;
|
||||
C4::Output::output_html_with_http_headers( $query, $cookie,
|
||||
$template->output);
|
||||
# $cookie = $query->cookie(CGISESSID => $session->id
|
||||
# );
|
||||
print $query->header(
|
||||
-type => 'text/html',
|
||||
-charset => 'utf-8',
|
||||
-cookie => $cookie
|
||||
),
|
||||
$template->output;
|
||||
safe_exit;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue