]> granicus.if.org Git - php/commitdiff
- Fixed year in version notices
authorDerick Rethans <derick@php.net>
Tue, 13 Jan 2004 09:13:44 +0000 (09:13 +0000)
committerDerick Rethans <derick@php.net>
Tue, 13 Jan 2004 09:13:44 +0000 (09:13 +0000)
sapi/cgi/cgi_main.c
sapi/cli/php_cli.c

index 22b34fa4122871cd34652b26b3ede8a122c4930e..2d01040a58f99b2ab9480b1b028193b2941a0632 100644 (file)
@@ -1416,9 +1416,9 @@ consult the installation file that came with this distribution, or visit \n\
                                                        SG(request_info).no_headers = 1;
                                                }
 #if ZEND_DEBUG
-                                               php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2003 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
+                                               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());
 #else
-                                               php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2003 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
+                                               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());
 #endif
                                                php_end_ob_buffers(1 TSRMLS_CC);
                                                exit(1);
index b2c08ed6ed418f77951085ab3e9685fa73def6df..16dc7c3c830db2aa839a3b150593ab2be3b39a45 100644 (file)
@@ -636,9 +636,9 @@ int main(int argc, char *argv[])
                                        goto err;
                                }
 #if ZEND_DEBUG
-                               php_printf("PHP %s (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2003 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
+                               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());
 #else
-                               php_printf("PHP %s (%s) (built: %s %s)\nCopyright (c) 1997-2003 The PHP Group\n%s", PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
+                               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());
 #endif
                                php_end_ob_buffers(1 TSRMLS_CC);
                                exit_status=1;