diff options
author | Marcus Boerger <helly@php.net> | 2005-11-24 00:30:41 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-11-24 00:30:41 +0000 |
commit | fac6e1b4c02b78fb0219710ae3a962b87d28488d (patch) | |
tree | b8ff6b7a77b14aaf1448c8f97a4e24c899a219cd | |
parent | ddc2444d2ca9061959cac4fff98074b6f83f24e0 (diff) | |
download | php-git-fac6e1b4c02b78fb0219710ae3a962b87d28488d.tar.gz |
- License for core extensions is PHP License
- Add Johannes to credits for his work here
-rwxr-xr-x | ext/reflection/CREDITS | 4 | ||||
-rw-r--r-- | ext/reflection/php_reflection.c | 13 | ||||
-rw-r--r-- | ext/reflection/php_reflection.h | 14 |
3 files changed, 16 insertions, 15 deletions
diff --git a/ext/reflection/CREDITS b/ext/reflection/CREDITS index 9d5a6891d5..84be988802 100755 --- a/ext/reflection/CREDITS +++ b/ext/reflection/CREDITS @@ -1,2 +1,2 @@ -reflection -Marcus Boerger, Timm Friebe, George Schlossnagle, Andrei Zmievski +Reflection +Marcus Boerger, Timm Friebe, George Schlossnagle, Andrei Zmievski, Johannes Schlueter diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 92b15b16c6..ef1e51ba18 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -1,21 +1,22 @@ /* +----------------------------------------------------------------------+ - | Zend Engine | + | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2005 Zend Technologies Ltd. (http://www.zend.com) | + | Copyright (c) 1997-2005 The PHP Group | +----------------------------------------------------------------------+ - | This source file is subject to version 2.00 of the Zend license, | + | This source file is subject to version 3.0 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | - | http://www.zend.com/license/2_00.txt. | - | If you did not receive a copy of the Zend license and are unable to | + | http://www.php.net/license/3_0.txt. | + | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | - | license@zend.com so we can mail you a copy immediately. | + | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Timm Friebe <thekid@thekid.de> | | George Schlossnagle <george@omniti.com> | | Andrei Zmievski <andrei@gravitonic.com> | | Marcus Boerger <helly@php.net> | + | Johannes Schlueter <johannes@php.net> | +----------------------------------------------------------------------+ */ diff --git a/ext/reflection/php_reflection.h b/ext/reflection/php_reflection.h index 8bdd77c621..9cc324d275 100644 --- a/ext/reflection/php_reflection.h +++ b/ext/reflection/php_reflection.h @@ -1,16 +1,16 @@ /* +----------------------------------------------------------------------+ - | Zend Engine | + | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2005 Zend Technologies Ltd. (http://www.zend.com) | + | Copyright (c) 1997-2005 The PHP Group | +----------------------------------------------------------------------+ - | This source file is subject to version 2.00 of the Zend license, | - | that is bundled with this package in the file LICENSE, and is | + | This source file is subject to version 3.0 of the PHP license, | + | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | - | http://www.zend.com/license/2_00.txt. | - | If you did not receive a copy of the Zend license and are unable to | + | http://www.php.net/license/3_0.txt. | + | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | - | license@zend.com so we can mail you a copy immediately. | + | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: George Schlossnagle <george@omniti.com> | +----------------------------------------------------------------------+ |