Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:11510 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 26456 invoked by uid 1010); 23 Jul 2004 12:37:24 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 26383 invoked from network); 23 Jul 2004 12:37:23 -0000 Received: from unknown (HELO is.magroup.ru) (213.33.179.242) by pb1.pair.com with SMTP; 23 Jul 2004 12:37:23 -0000 Received: from grp-dovgal.media-arts.ru ([192.168.3.226]) by is.magroup.ru with Microsoft SMTPSVC(5.0.2195.6713); Fri, 23 Jul 2004 16:38:19 +0400 Date: Fri, 23 Jul 2004 16:38:19 +0400 To: php-dev Message-ID: <20040723163819.1969034b.tony2001@phpclub.net> X-Mailer: Sylpheed version 0.9.12cvs1 (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Fri__23_Jul_2004_16_38_19_+0400_RxYcqfJ4MVwI6pdl" X-OriginalArrivalTime: 23 Jul 2004 12:38:19.0850 (UTC) FILETIME=[EF3D22A0:01C470B1] Subject: [PATCH] two small typos in php.ini.* and mail.c From: tony2001@phpclub.net (Antony Dovgal) --Multipart=_Fri__23_Jul_2004_16_38_19_+0400_RxYcqfJ4MVwI6pdl Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi all! Two small patches to fix typos in php.ini-dist, php.ini-recommended & mail.c These patches fix bug #29122. --- WBR, Antony Dovgal aka tony2001 tony2001@phpclub.net || antony@dovgal.com --Multipart=_Fri__23_Jul_2004_16_38_19_+0400_RxYcqfJ4MVwI6pdl Content-Type: text/plain; name="mail.c.diff.txt" Content-Disposition: attachment; filename="mail.c.diff.txt" Content-Transfer-Encoding: 7bit Index: ext/standard/mail.c =================================================================== RCS file: /repository/php-src/ext/standard/mail.c,v retrieving revision 1.82 diff -u -r1.82 mail.c --- ext/standard/mail.c 9 Jan 2004 01:35:44 -0000 1.82 +++ ext/standard/mail.c 23 Jul 2004 12:30:07 -0000 @@ -86,7 +86,7 @@ char *subject=NULL, *extra_cmd=NULL; int to_len, message_len, headers_len; int subject_len, extra_cmd_len, i; - char *force_extra_parameters = INI_STR("mail_force_extra_parameters"); + char *force_extra_parameters = INI_STR("mail.force_extra_parameters"); char *to_r, *subject_r; if (PG(safe_mode) && (ZEND_NUM_ARGS() == 5)) { --Multipart=_Fri__23_Jul_2004_16_38_19_+0400_RxYcqfJ4MVwI6pdl Content-Type: text/plain; name="php.ini.diff.txt" Content-Disposition: attachment; filename="php.ini.diff.txt" Content-Transfer-Encoding: 7bit Index: php.ini-dist =================================================================== RCS file: /repository/php-src/php.ini-dist,v retrieving revision 1.215 diff -u -r1.215 php.ini-dist --- php.ini-dist 15 Jul 2004 19:09:37 -0000 1.215 +++ php.ini-dist 23 Jul 2004 12:29:39 -0000 @@ -617,7 +617,7 @@ ; Force the addition of the specified parameters to be passed as extra parameters ; to the sendmail binary. These parameters will always replace the value of ; the 5th parameter to mail(), even in safe mode. -;mail.force_extra_paramaters = +;mail.force_extra_parameters = [SQL] sql.safe_mode = Off Index: php.ini-recommended =================================================================== RCS file: /repository/php-src/php.ini-recommended,v retrieving revision 1.159 diff -u -r1.159 php.ini-recommended --- php.ini-recommended 15 Jul 2004 19:09:37 -0000 1.159 +++ php.ini-recommended 23 Jul 2004 12:29:39 -0000 @@ -675,7 +675,7 @@ ; Force the addition of the specified parameters to be passed as extra parameters ; to the sendmail binary. These parameters will always replace the value of ; the 5th parameter to mail(), even in safe mode. -;mail.force_extra_paramaters = +;mail.force_extra_parameters = [SQL] sql.safe_mode = Off --Multipart=_Fri__23_Jul_2004_16_38_19_+0400_RxYcqfJ4MVwI6pdl--