diff options
49 files changed, 151 insertions, 151 deletions
diff --git a/Zend/LICENSE b/Zend/LICENSE index 1dd42f1ff3..5950864bd0 100644 --- a/Zend/LICENSE +++ b/Zend/LICENSE @@ -1,11 +1,11 @@ --------------------------------------------------------------------------- - The Zend License, version 0.91 - Copyright (C) 1999 Andi Gutmans & Zeev Suraski + The Zend License, version 0.92 + Copyright (C) 1999-2000 Zend Technologies Ltd. --------------------------------------------------------------------------- -The Zend scripting engine library is a product of Andi Gutmans and -Zeev Suraski. It may be used and/or distributed under the terms of the -Q Public License (QPL) version 1.0, enclosed below. +The Zend scripting engine library is a product of Zend Technologies Ltd. +It may be used and/or distributed under the terms of the Q Public +License (QPL) version 1.0, enclosed below. For more information about Zend please visit http://www.zend.com/ For license related questions please mail license@zend.com @@ -113,4 +113,4 @@ OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -===========================================================================
\ No newline at end of file +=========================================================================== diff --git a/Zend/zend-parser.y b/Zend/zend-parser.y index 37f5011a40..fb482d75b9 100644 --- a/Zend/zend-parser.y +++ b/Zend/zend-parser.y @@ -3,12 +3,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend-scanner.h b/Zend/zend-scanner.h index e3ec862e3d..546c3e1a62 100644 --- a/Zend/zend-scanner.h +++ b/Zend/zend-scanner.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend-scanner.l b/Zend/zend-scanner.l index dd99bf9fdb..63ea2cc567 100644 --- a/Zend/zend-scanner.l +++ b/Zend/zend-scanner.l @@ -4,12 +4,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend.c b/Zend/zend.c index 178f7a774e..8854be62c7 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend.h b/Zend/zend.h index 7996f38ad1..3f1474cef5 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_API.c b/Zend/zend_API.c index e07c4b1616..27e106de32 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_API.h b/Zend/zend_API.h index df8507032c..f3c81abb1a 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 99677e9a99..000fd646d4 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index a20b610c7a..24d2def634 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 08e9198313..b7a4168d24 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_builtin_functions.h b/Zend/zend_builtin_functions.h index 01a801b89c..60952922be 100644 --- a/Zend/zend_builtin_functions.h +++ b/Zend/zend_builtin_functions.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 30c2113afb..844a133930 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 64bf41ef08..8d7f6c05d4 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_config.w32.h b/Zend/zend_config.w32.h index d0f8ab094b..a92ae26586 100644 --- a/Zend/zend_config.w32.h +++ b/Zend/zend_config.w32.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_constants.c b/Zend/zend_constants.c index 07510c6146..ee200b1964 100644 --- a/Zend/zend_constants.c +++ b/Zend/zend_constants.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_constants.h b/Zend/zend_constants.h index 2e53636c92..09075cc56b 100644 --- a/Zend/zend_constants.h +++ b/Zend/zend_constants.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_dynamic_array.c b/Zend/zend_dynamic_array.c index 919550b162..4dfb4d121f 100644 --- a/Zend/zend_dynamic_array.c +++ b/Zend/zend_dynamic_array.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_dynamic_array.h b/Zend/zend_dynamic_array.h index 5e408edba7..838bc117e4 100644 --- a/Zend/zend_dynamic_array.h +++ b/Zend/zend_dynamic_array.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_errors.h b/Zend/zend_errors.h index 2983883cb2..8c5548dad5 100644 --- a/Zend/zend_errors.h +++ b/Zend/zend_errors.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index a5f5fb93cb..b66d21331f 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 2e2a9856f8..0a94b82786 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index d03f3dc95c..ee5485e14e 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_extensions.c b/Zend/zend_extensions.c index 78b04e13ce..51264b3c8e 100644 --- a/Zend/zend_extensions.c +++ b/Zend/zend_extensions.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_extensions.h b/Zend/zend_extensions.h index 57b13d4e91..d68a071edd 100644 --- a/Zend/zend_extensions.h +++ b/Zend/zend_extensions.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_fast_cache.h b/Zend/zend_fast_cache.h index cd56506f7e..ab238b2d11 100644 --- a/Zend/zend_fast_cache.h +++ b/Zend/zend_fast_cache.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index d0e54fc175..a592bebb5a 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_globals_macros.h b/Zend/zend_globals_macros.h index e3d35c3542..8735da4bf0 100644 --- a/Zend/zend_globals_macros.h +++ b/Zend/zend_globals_macros.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c index e0e8d39d48..d5d5f3326b 100644 --- a/Zend/zend_hash.c +++ b/Zend/zend_hash.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_hash.h b/Zend/zend_hash.h index 0f5b023a9b..fee4206f93 100644 --- a/Zend/zend_hash.h +++ b/Zend/zend_hash.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_highlight.c b/Zend/zend_highlight.c index 83bb87fe0a..3acaaf9106 100644 --- a/Zend/zend_highlight.c +++ b/Zend/zend_highlight.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_highlight.h b/Zend/zend_highlight.h index 742229f8cf..0707d1de18 100644 --- a/Zend/zend_highlight.h +++ b/Zend/zend_highlight.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_indent.c b/Zend/zend_indent.c index 0e37e845c5..b61c89a1b4 100644 --- a/Zend/zend_indent.c +++ b/Zend/zend_indent.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_indent.h b/Zend/zend_indent.h index 98e3d91a53..a4fa3f0520 100644 --- a/Zend/zend_indent.h +++ b/Zend/zend_indent.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_list.c b/Zend/zend_list.c index b2224b7d34..4d1bc495b5 100644 --- a/Zend/zend_list.c +++ b/Zend/zend_list.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_list.h b/Zend/zend_list.h index 0fba9d9808..1a8e411448 100644 --- a/Zend/zend_list.h +++ b/Zend/zend_list.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_llist.c b/Zend/zend_llist.c index 2d22343f12..ffb535ab79 100644 --- a/Zend/zend_llist.c +++ b/Zend/zend_llist.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_llist.h b/Zend/zend_llist.h index 203d7aeb5a..c51f9074a7 100644 --- a/Zend/zend_llist.h +++ b/Zend/zend_llist.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h index f203f81b6f..0fb418d6b5 100644 --- a/Zend/zend_modules.h +++ b/Zend/zend_modules.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 01a8bf8f69..2f9c0907a3 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 3432621cde..fdf10c543e 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index 147f4e9cf5..ad3cab6ef1 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_ptr_stack.c b/Zend/zend_ptr_stack.c index b361a81105..ec9b448bfe 100644 --- a/Zend/zend_ptr_stack.c +++ b/Zend/zend_ptr_stack.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_ptr_stack.h b/Zend/zend_ptr_stack.h index fd1b124fae..ef607c55a0 100644 --- a/Zend/zend_ptr_stack.h +++ b/Zend/zend_ptr_stack.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | @@ -22,7 +22,7 @@ #define _ZEND_PTR_STACK_H typedef struct _zend_ptr_stack { - short top, max; + int top, max; void **elements; void **top_element; } zend_ptr_stack; diff --git a/Zend/zend_sprintf.c b/Zend/zend_sprintf.c index bd31312d03..6ea503b489 100644 --- a/Zend/zend_sprintf.c +++ b/Zend/zend_sprintf.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_stack.c b/Zend/zend_stack.c index 0e7ab5ee31..231f6bc0c5 100644 --- a/Zend/zend_stack.c +++ b/Zend/zend_stack.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_stack.h b/Zend/zend_stack.h index 849d4a7217..09daeba615 100644 --- a/Zend/zend_stack.h +++ b/Zend/zend_stack.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_variables.c b/Zend/zend_variables.c index 4ca0dc6dcb..a87cb7b139 100644 --- a/Zend/zend_variables.c +++ b/Zend/zend_variables.c @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | diff --git a/Zend/zend_variables.h b/Zend/zend_variables.h index 6651b5e7d6..e374003003 100644 --- a/Zend/zend_variables.h +++ b/Zend/zend_variables.h @@ -2,12 +2,12 @@ +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ - | Copyright (c) 1998-2000 Andi Gutmans, Zeev Suraski | + | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ - | This source file is subject to version 0.91 of the Zend license, | + | This source file is subject to version 0.92 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | - | http://www.zend.com/license/0_91.txt. | + | http://www.zend.com/license/0_92.txt. | | If you did not receive a copy of the Zend 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. | |