diff options
author | jocuri%softhome.net <> | 2008-04-04 13:48:12 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2008-04-04 13:48:12 +0200 |
commit | 1d3d1717bb1ccc38d5950cc4bb975fbe50d77078 (patch) | |
tree | 7fc46ac68c9f04c01d7c74e53f5bae2e64729316 /docs | |
parent | f83746b15d9bc4ef2c923a3fb81bc45ea417310d (diff) | |
download | bugzilla-1d3d1717bb1ccc38d5950cc4bb975fbe50d77078.tar.gz bugzilla-1d3d1717bb1ccc38d5950cc4bb975fbe50d77078.tar.xz |
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.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/en/xml/security.xml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/en/xml/security.xml b/docs/en/xml/security.xml index 3d2eef83f..c373c455d 100644 --- a/docs/en/xml/security.xml +++ b/docs/en/xml/security.xml @@ -1,5 +1,5 @@ <!-- <!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"> <title>Bugzilla Security</title> @@ -369,9 +369,8 @@ skip-networking <ulink url="http://www.cert.org/tech_tips/malicious_code_mitigation.html#3">the CERT advisory</ulink> on this issue. - If your installation is for an English speaking audience only, making the - change in <xref linkend="security-bugzilla-charset-ex"/> will prevent - this problem. + Making the change in <xref linkend="security-bugzilla-charset-ex"/> will + prevent this problem. </para> <example id="security-bugzilla-charset-ex"> @@ -381,7 +380,7 @@ skip-networking <filename>Bugzilla/CGI.pm</filename>: <programlisting>$self->charset('');</programlisting> and change it to: - <programlisting>$self->charset('ISO-8859-1');</programlisting> + <programlisting>$self->charset('UTF-8');</programlisting> </para> </example> </section> |