Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17508 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 83844 invoked by uid 1010); 3 Aug 2005 06:17:12 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 83829 invoked from network); 3 Aug 2005 06:17:12 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 3 Aug 2005 06:17:12 -0000 X-Host-Fingerprint: 192.38.9.232 gw2.emini.dk Linux 2.4/2.6 Received: from ([192.38.9.232:7531] helo=gw2.emini.dk) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 63/49-04646-76160F24 for ; Wed, 03 Aug 2005 02:17:12 -0400 Received: from foxbox (1Cust87.tnt103.lnd4.gbr.da.uu.net [213.116.54.87]) by gw2.emini.dk (Postfix) with ESMTP id 060B775401 for ; Wed, 3 Aug 2005 08:17:07 +0200 (CEST) Message-ID: <010c01c597f2$fa9907e0$348fbc3e@foxbox> Reply-To: "Steph" To: "internals" Date: Wed, 3 Aug 2005 07:17:07 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0109_01C597FB.5B22A5F0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1506 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Subject: [PATCH] cgi dates From: steph@zend.com ("Steph") ------=_NextPart_000_0109_01C597FB.5B22A5F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit I missed one... ------=_NextPart_000_0109_01C597FB.5B22A5F0 Content-Type: text/plain; name="cgi_dates.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="cgi_dates.txt" Index: sapi/cgi/cgi_main.c=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /repository/php-src/sapi/cgi/cgi_main.c,v=0A= retrieving revision 1.266=0A= diff -u -r1.266 cgi_main.c=0A= --- sapi/cgi/cgi_main.c 16 Jun 2005 14:54:51 -0000 1.266=0A= +++ sapi/cgi/cgi_main.c 3 Aug 2005 06:14:04 -0000=0A= @@ -2,7 +2,7 @@=0A= = +----------------------------------------------------------------------+=0A= | PHP Version 5 = |=0A= = +----------------------------------------------------------------------+=0A= - | Copyright (c) 1997-2004 The PHP Group = |=0A= + | Copyright (c) 1997-2005 The PHP Group = |=0A= = +----------------------------------------------------------------------+=0A= | This source file is subject to version 3.0 of the PHP license, = |=0A= | that is bundled with this package in the file LICENSE, and is = |=0A= @@ -1412,9 +1412,9 @@=0A= SG(request_info).no_headers =3D 1;=0A= }=0A= #if ZEND_DEBUG=0A= - php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) = 1997-2004 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, = __TIME__, get_zend_version());=0A= + php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) = 1997-2005 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, = __TIME__, get_zend_version());=0A= #else=0A= - php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2004 = The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, = get_zend_version());=0A= + php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2005 = The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, = get_zend_version());=0A= #endif=0A= php_end_ob_buffers(1 TSRMLS_CC);=0A= exit(1);=0A= Index: sapi/cgi/getopt.c=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /repository/php-src/sapi/cgi/getopt.c,v=0A= retrieving revision 1.8=0A= diff -u -r1.8 getopt.c=0A= --- sapi/cgi/getopt.c 8 Jan 2004 08:18:08 -0000 1.8=0A= +++ sapi/cgi/getopt.c 3 Aug 2005 06:14:58 -0000=0A= @@ -2,7 +2,7 @@=0A= = +----------------------------------------------------------------------+=0A= | PHP Version 5 = |=0A= = +----------------------------------------------------------------------+=0A= - | Copyright (c) 1997-2004 The PHP Group = |=0A= + | Copyright (c) 1997-2005 The PHP Group = |=0A= = +----------------------------------------------------------------------+=0A= | This source file is subject to version 3.0 of the PHP license, = |=0A= | that is bundled with this package in the file LICENSE, and is = |=0A= Index: sapi/cgi/php_getopt.h=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /repository/php-src/sapi/cgi/php_getopt.h,v=0A= retrieving revision 1.6=0A= diff -u -r1.6 php_getopt.h=0A= --- sapi/cgi/php_getopt.h 8 Jan 2004 17:33:22 -0000 1.6=0A= +++ sapi/cgi/php_getopt.h 3 Aug 2005 06:14:46 -0000=0A= @@ -2,7 +2,7 @@=0A= = +----------------------------------------------------------------------+=0A= | PHP Version 5 = |=0A= = +----------------------------------------------------------------------+=0A= - | Copyright (c) 1997-2004 The PHP Group = |=0A= + | Copyright (c) 1997-2005 The PHP Group = |=0A= = +----------------------------------------------------------------------+=0A= | This source file is subject to version 3.0 of the PHP license, = |=0A= | that is bundled with this package in the file LICENSE, and is = |=0A= ------=_NextPart_000_0109_01C597FB.5B22A5F0--