From: Brion Vibber Date: Sun, 22 Aug 2004 23:32:05 +0000 (+0000) Subject: Fix typo in quote conversion X-Git-Tag: 1.5.0alpha1~2248 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=e75b83abb4a1b32e9500770b8f346f969b2846b3;p=lhc%2Fweb%2Fwiklou.git Fix typo in quote conversion --- diff --git a/includes/UserMailer.php b/includes/UserMailer.php index 25b721217a..ff9b978b68 100644 --- a/includes/UserMailer.php +++ b/includes/UserMailer.php @@ -20,7 +20,7 @@ function userMailer( $to, $from, $subject, $body ) /* removing to: field as it should be set by the send() function below UNTESTED - Hashar */ // $headers["To"] = $qto; - $headers['Subject"] = $subject; + $headers['Subject'] = $subject; $headers['MIME-Version'] = '1.0'; $headers['Content-type'] = 'text/plain; charset='.$wgOutputEncoding; $headers['Content-transfer-encoding'] = '8bit';