]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 295077: Fix 2.18 branch documentation (unescaped &)
authormozilla%colinogilvie.co.uk <>
Fri, 27 May 2005 03:42:41 +0000 (03:42 +0000)
committermozilla%colinogilvie.co.uk <>
Fri, 27 May 2005 03:42:41 +0000 (03:42 +0000)
Patch By Colin Ogilvie <colin.ogilvie@gmail.com> r=mkanat,wurblzap

docs/xml/installation.xml

index 8b6aac68db3e33d8c2dd87f516612407d3678a12..ed26d5823477bec64296b84424b44d8e26797fd0 100644 (file)
@@ -1,5 +1,5 @@
 <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
-<!-- $Id: installation.xml,v 1.72.2.21 2005/03/19 11:22:55 mkanat%kerio.com Exp $ -->
+<!-- $Id: installation.xml,v 1.72.2.22 2005/05/26 20:42:41 mozilla%colinogilvie.co.uk Exp $ -->
 <chapter id="installing-bugzilla">
   <title>Installing Bugzilla</title>
 
@@ -1436,7 +1436,7 @@ close SENDMAIL;
 use Net::SMTP;
 my $smtp_server = 'smtp.mycompany.com';  # change this
 
-($enableSendMail && $rcpt_to) || return;
+($enableSendMail &amp;&amp; $rcpt_to) || return;
 
 # Use die on error, so that the mail will be in the 'unsent mails' and
 # can be sent from the sanity check page.