diff options
author | jocuri%softhome.net <> | 2005-06-08 04:40:25 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2005-06-08 04:40:25 +0200 |
commit | 3341c51fca4a0385fdb442befbecfd30b9556085 (patch) | |
tree | 99d2f159ffcadad6818097fac5111e9fcae73c40 /docs | |
parent | 311bad457cc4cf999bb860d703a05f4eafda1014 (diff) | |
download | bugzilla-3341c51fca4a0385fdb442befbecfd30b9556085.tar.gz bugzilla-3341c51fca4a0385fdb442befbecfd30b9556085.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/xml/security.xml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/xml/security.xml b/docs/xml/security.xml index eb26ec18c..018f5d78d 100644 --- a/docs/xml/security.xml +++ b/docs/xml/security.xml @@ -1,5 +1,5 @@ <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> --> -<!-- $Id: security.xml,v 1.4 2005/01/21 07:08:19 travis%sedsystems.ca Exp $ --> +<!-- $Id: security.xml,v 1.5 2005/06/07 19:40:25 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> |