diff options
author | jake%bugzilla.org <> | 2008-04-04 13:46:38 +0200 |
---|---|---|
committer | jake%bugzilla.org <> | 2008-04-04 13:46:38 +0200 |
commit | f300fb717af96874f85d95f55e808a45a75c132d (patch) | |
tree | 226c0bea26ad2928a5c56bef4ad1d1624e93c980 /docs | |
parent | 846bf8c21df1416e7caa55526dd009f72100f463 (diff) | |
download | bugzilla-f300fb717af96874f85d95f55e808a45a75c132d.tar.gz bugzilla-f300fb717af96874f85d95f55e808a45a75c132d.tar.xz |
Bug 210248 - Missing "my" in SMTP code for win32 instructions.
Patch by Jean-Sebastien Guay <jean_seb@hybride.com>
r,a=jake
Diffstat (limited to 'docs')
-rw-r--r-- | docs/en/xml/installation.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml index 5a2ef1b5c..ffeab011a 100644 --- a/docs/en/xml/installation.xml +++ b/docs/en/xml/installation.xml @@ -1,5 +1,5 @@ <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> --> -<!-- $Id: installation.xml,v 1.47 2008/04/04 06:46:37 jake%bugzilla.org Exp $ --> +<!-- $Id: installation.xml,v 1.48 2008/04/04 06:46:38 jake%bugzilla.org Exp $ --> <chapter id="installation"> <title>Installation</title> @@ -1245,7 +1245,7 @@ close SENDMAIL; <para>to</para> <programlisting> use Net::SMTP; -$smtp_server = 'smtp.mycompany.com'; # change this +my $smtp_server = 'smtp.mycompany.com'; # change this # Use die on error, so that the mail will be in the 'unsent mails' and # can be sent from the sanity check page. |