Commit 1d3d1717 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Documentation patch for bug 279589: Documentation should suggest UTF-8 encoding…

Documentation patch for bug 279589: Documentation should suggest UTF-8 encoding instead of ISO-8859-1; patch by Marc Schumann <wurblzap@gmail.com>, r=colin.ogilvie.
parent f83746b1
<!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> --> <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
<!-- $Id: security.xml,v 1.4 2008/04/04 06:48:11 travis%sedsystems.ca Exp $ --> <!-- $Id: security.xml,v 1.5 2008/04/04 06:48:12 jocuri%softhome.net Exp $ -->
<chapter id="security"> <chapter id="security">
<title>Bugzilla Security</title> <title>Bugzilla Security</title>
...@@ -369,9 +369,8 @@ skip-networking ...@@ -369,9 +369,8 @@ skip-networking
<ulink <ulink
url="http://www.cert.org/tech_tips/malicious_code_mitigation.html#3">the url="http://www.cert.org/tech_tips/malicious_code_mitigation.html#3">the
CERT advisory</ulink> on this issue. CERT advisory</ulink> on this issue.
If your installation is for an English speaking audience only, making the Making the change in <xref linkend="security-bugzilla-charset-ex"/> will
change in <xref linkend="security-bugzilla-charset-ex"/> will prevent prevent this problem.
this problem.
</para> </para>
<example id="security-bugzilla-charset-ex"> <example id="security-bugzilla-charset-ex">
...@@ -381,7 +380,7 @@ skip-networking ...@@ -381,7 +380,7 @@ skip-networking
<filename>Bugzilla/CGI.pm</filename>: <filename>Bugzilla/CGI.pm</filename>:
<programlisting>$self->charset('');</programlisting> <programlisting>$self->charset('');</programlisting>
and change it to: and change it to:
<programlisting>$self->charset('ISO-8859-1');</programlisting> <programlisting>$self->charset('UTF-8');</programlisting>
</para> </para>
</example> </example>
</section> </section>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment