Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
9297dbbe
Commit
9297dbbe
authored
Nov 27, 2012
by
Thorsten Schöning
Committed by
Byron Jones
Nov 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 804093: Fix autodetected charset for windows-1252 encoded content
r=glob,a=LpSolit
parent
508c988e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Util.pm
Bugzilla/Util.pm
+3
-3
No files found.
Bugzilla/Util.pm
View file @
9297dbbe
...
@@ -763,12 +763,12 @@ sub detect_encoding {
...
@@ -763,12 +763,12 @@ sub detect_encoding {
}
}
# Encode::Detect sometimes mis-detects various ISO encodings as iso-8859-8,
# Encode::Detect sometimes mis-detects various ISO encodings as iso-8859-8,
# but Encode::Guess can usually tell which one it is.
#
or cp1255,
but Encode::Guess can usually tell which one it is.
if
(
$encoding
&&
$encoding
eq
'iso-8859-8'
)
{
if
(
$encoding
&&
(
$encoding
eq
'iso-8859-8'
||
$encoding
eq
'cp1255'
)
)
{
my
$decoded_as
=
_guess_iso
(
$data
,
'iso-8859-8'
,
my
$decoded_as
=
_guess_iso
(
$data
,
'iso-8859-8'
,
# These are ordered this way because it gives the most
# These are ordered this way because it gives the most
# accurate results.
# accurate results.
qw(iso-8859-7 iso-8859-2)
);
qw(
cp1252
iso-8859-7 iso-8859-2)
);
$encoding
=
$decoded_as
if
$decoded_as
;
$encoding
=
$decoded_as
if
$decoded_as
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment