From 246c4fa23d292e2b99a67c4b26b022970c800ff0 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Mon, 21 Mar 2011 21:33:27 +0000 Subject: [PATCH] - We're in 2011. SVN Rev: 3419 --- LICENSE | 2 +- debugclient/main.c | 2 +- debugclient/usefulstuff.c | 2 +- debugclient/usefulstuff.h | 2 +- php_xdebug.h | 6 +++--- template.rc | 2 +- tests/bug00421.phpt | 4 ++-- tests/bug00475.phpt | 4 ++-- tests/bug00494.phpt | 4 ++-- tests/bug00530.phpt | 4 ++-- tests/bug00538.phpt | 4 ++-- tests/bug00566-2.phpt | 4 ++-- usefulstuff.c | 2 +- usefulstuff.h | 2 +- xdebug.c | 2 +- xdebug_code_coverage.c | 2 +- xdebug_code_coverage.h | 2 +- xdebug_com.c | 2 +- xdebug_com.h | 2 +- xdebug_compat.c | 2 +- xdebug_compat.h | 2 +- xdebug_handler_dbgp.c | 2 +- xdebug_handler_dbgp.h | 2 +- xdebug_handlers.c | 2 +- xdebug_handlers.h | 2 +- xdebug_mm.h | 2 +- xdebug_private.c | 2 +- xdebug_private.h | 2 +- xdebug_profiler.c | 2 +- xdebug_profiler.h | 2 +- xdebug_set.c | 2 +- xdebug_set.h | 2 +- xdebug_stack.c | 2 +- xdebug_stack.h | 2 +- xdebug_str.c | 2 +- xdebug_str.h | 2 +- xdebug_superglobals.c | 2 +- xdebug_superglobals.h | 2 +- xdebug_tracing.c | 2 +- xdebug_tracing.h | 2 +- xdebug_var.c | 2 +- xdebug_var.h | 2 +- xdebug_xml.c | 2 +- xdebug_xml.h | 2 +- 44 files changed, 52 insertions(+), 52 deletions(-) diff --git a/LICENSE b/LICENSE index 2ebb5c32a..a1fbee807 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ -------------------------------------------------------------------- The Xdebug License, version 1.01 (Based on "The PHP License", version 3.0) - Copyright (c) 2003-2010 Derick Rethans. All rights reserved. + Copyright (c) 2003-2011 Derick Rethans. All rights reserved. -------------------------------------------------------------------- Redistribution and use in source and binary forms, with or without diff --git a/debugclient/main.c b/debugclient/main.c index 70088feb4..fba450436 100644 --- a/debugclient/main.c +++ b/debugclient/main.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/debugclient/usefulstuff.c b/debugclient/usefulstuff.c index 636fba16c..9e99c16f6 100644 --- a/debugclient/usefulstuff.c +++ b/debugclient/usefulstuff.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/debugclient/usefulstuff.h b/debugclient/usefulstuff.h index 74bd868c2..873bcefd9 100644 --- a/debugclient/usefulstuff.h +++ b/debugclient/usefulstuff.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/php_xdebug.h b/php_xdebug.h index 85ed4e0b2..2823d7d9b 100644 --- a/php_xdebug.h +++ b/php_xdebug.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | @@ -22,8 +22,8 @@ #define XDEBUG_NAME "Xdebug" #define XDEBUG_VERSION "2.2.0-dev" #define XDEBUG_AUTHOR "Derick Rethans" -#define XDEBUG_COPYRIGHT "Copyright (c) 2002-2010 by Derick Rethans" -#define XDEBUG_COPYRIGHT_SHORT "Copyright (c) 2002-2010" +#define XDEBUG_COPYRIGHT "Copyright (c) 2002-2011 by Derick Rethans" +#define XDEBUG_COPYRIGHT_SHORT "Copyright (c) 2002-2011" #define XDEBUG_URL "http://xdebug.org" #define XDEBUG_URL_FAQ "http://xdebug.org/docs/faq#api" diff --git a/template.rc b/template.rc index df856de47..ad6f8ecdb 100644 --- a/template.rc +++ b/template.rc @@ -41,7 +41,7 @@ BEGIN VALUE "FileDescription", FILE_DESCRIPTION "\0" VALUE "FileVersion", VERSIONSTR VALUE "InternalName", FILE_NAME "\0" - VALUE "LegalCopyright", "Copyright © 2002-2010 Derick Rethans\0" + VALUE "LegalCopyright", "Copyright © 2002-2011 Derick Rethans\0" VALUE "OriginalFilename", FILE_NAME "\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "Xdebug\0" diff --git a/tests/bug00421.phpt b/tests/bug00421.phpt index 71982b56f..107c03bec 100644 --- a/tests/bug00421.phpt +++ b/tests/bug00421.phpt @@ -20,9 +20,9 @@ $commands = array( dbgpRun( str_replace( 'FILE', "\"$file\"", $data ), $commands ); ?> ---EXPECT-- +--EXPECTF-- - + -> step_into -i 1 diff --git a/tests/bug00475.phpt b/tests/bug00475.phpt index b0b515655..0ccd38ffb 100644 --- a/tests/bug00475.phpt +++ b/tests/bug00475.phpt @@ -19,9 +19,9 @@ $commands = array( dbgpRun( $data, $commands ); ?> ---EXPECT-- +--EXPECTF-- - + -> step_into -i 1 diff --git a/tests/bug00494.phpt b/tests/bug00494.phpt index d598c39de..a15661f3a 100644 --- a/tests/bug00494.phpt +++ b/tests/bug00494.phpt @@ -15,9 +15,9 @@ $commands = array( dbgpRun( $data, $commands ); ?> ---EXPECT-- +--EXPECTF-- - + -> step_into -i 1 diff --git a/tests/bug00530.phpt b/tests/bug00530.phpt index f5ade4239..dfe4404de 100644 --- a/tests/bug00530.phpt +++ b/tests/bug00530.phpt @@ -20,9 +20,9 @@ $commands = array( dbgpRun( $data, $commands ); ?> ---EXPECT-- +--EXPECTF-- - + -> step_into -i 1 diff --git a/tests/bug00538.phpt b/tests/bug00538.phpt index 2813b0aab..c559cf915 100644 --- a/tests/bug00538.phpt +++ b/tests/bug00538.phpt @@ -16,9 +16,9 @@ $commands = array( dbgpRun( $data, $commands ); ?> ---EXPECT-- +--EXPECTF-- - + -> step_into -i 1 diff --git a/tests/bug00566-2.phpt b/tests/bug00566-2.phpt index b45ceae8e..cb0702945 100644 --- a/tests/bug00566-2.phpt +++ b/tests/bug00566-2.phpt @@ -18,9 +18,9 @@ $commands = array( ); dbgpRun( $data, $commands ); ---EXPECT-- +--EXPECTF-- - + -> step_into -i 1 diff --git a/usefulstuff.c b/usefulstuff.c index 8773d8a18..cfbd0f4cc 100644 --- a/usefulstuff.c +++ b/usefulstuff.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/usefulstuff.h b/usefulstuff.h index 125db3b15..dc55376e7 100644 --- a/usefulstuff.h +++ b/usefulstuff.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug.c b/xdebug.c index 1786b5125..f4744f292 100644 --- a/xdebug.c +++ b/xdebug.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_code_coverage.c b/xdebug_code_coverage.c index 9325dd9ec..052fb2479 100644 --- a/xdebug_code_coverage.c +++ b/xdebug_code_coverage.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_code_coverage.h b/xdebug_code_coverage.h index 0cc790e44..484815266 100644 --- a/xdebug_code_coverage.h +++ b/xdebug_code_coverage.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_com.c b/xdebug_com.c index 75cabd090..43f4cbb55 100644 --- a/xdebug_com.c +++ b/xdebug_com.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_com.h b/xdebug_com.h index c144905b5..d0c537f8f 100644 --- a/xdebug_com.h +++ b/xdebug_com.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_compat.c b/xdebug_compat.c index 42cfa3179..89ed72420 100755 --- a/xdebug_compat.c +++ b/xdebug_compat.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | | (c) 1997-2004 Jim Winstead | | (c) 1998-2004 Andi Gutmans and | | Zeev Suraski | diff --git a/xdebug_compat.h b/xdebug_compat.h index b602ed45a..40c23c9a6 100755 --- a/xdebug_compat.h +++ b/xdebug_compat.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_handler_dbgp.c b/xdebug_handler_dbgp.c index e68a88d87..ad1e6663f 100644 --- a/xdebug_handler_dbgp.c +++ b/xdebug_handler_dbgp.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_handler_dbgp.h b/xdebug_handler_dbgp.h index 9faf9b114..c5464d1f6 100644 --- a/xdebug_handler_dbgp.h +++ b/xdebug_handler_dbgp.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_handlers.c b/xdebug_handlers.c index 70e19e352..847d4b723 100644 --- a/xdebug_handlers.c +++ b/xdebug_handlers.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_handlers.h b/xdebug_handlers.h index a78e0b00f..10483c4f6 100644 --- a/xdebug_handlers.h +++ b/xdebug_handlers.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_mm.h b/xdebug_mm.h index 4964a4197..b5778a2c7 100644 --- a/xdebug_mm.h +++ b/xdebug_mm.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_private.c b/xdebug_private.c index 1a6a8e9a0..f8b57c9e5 100644 --- a/xdebug_private.c +++ b/xdebug_private.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_private.h b/xdebug_private.h index 1e71ef41b..624ff48ef 100644 --- a/xdebug_private.h +++ b/xdebug_private.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_profiler.c b/xdebug_profiler.c index e4f7d52f3..375395b8a 100644 --- a/xdebug_profiler.c +++ b/xdebug_profiler.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_profiler.h b/xdebug_profiler.h index 8022a22e3..e076dbd51 100644 --- a/xdebug_profiler.h +++ b/xdebug_profiler.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_set.c b/xdebug_set.c index e72eafee5..56b128f17 100644 --- a/xdebug_set.c +++ b/xdebug_set.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_set.h b/xdebug_set.h index a2d29f0da..e48a09055 100644 --- a/xdebug_set.h +++ b/xdebug_set.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_stack.c b/xdebug_stack.c index 4de263287..8b8d35016 100644 --- a/xdebug_stack.c +++ b/xdebug_stack.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_stack.h b/xdebug_stack.h index 54c0ca4be..e79694c53 100644 --- a/xdebug_stack.h +++ b/xdebug_stack.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_str.c b/xdebug_str.c index 2392f664d..22c14a9bd 100644 --- a/xdebug_str.c +++ b/xdebug_str.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_str.h b/xdebug_str.h index a465b3f20..f4af0fd0d 100644 --- a/xdebug_str.h +++ b/xdebug_str.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_superglobals.c b/xdebug_superglobals.c index 087ed97e6..87e6c6291 100644 --- a/xdebug_superglobals.c +++ b/xdebug_superglobals.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_superglobals.h b/xdebug_superglobals.h index cd8bc85be..4aaab94e5 100644 --- a/xdebug_superglobals.h +++ b/xdebug_superglobals.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_tracing.c b/xdebug_tracing.c index adca79333..13f40fd08 100644 --- a/xdebug_tracing.c +++ b/xdebug_tracing.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_tracing.h b/xdebug_tracing.h index 4607b9754..6ed348981 100644 --- a/xdebug_tracing.h +++ b/xdebug_tracing.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_var.c b/xdebug_var.c index c78ea99cd..9af0745c4 100644 --- a/xdebug_var.c +++ b/xdebug_var.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_var.h b/xdebug_var.h index 1cc7981c1..ab18bdcf6 100644 --- a/xdebug_var.h +++ b/xdebug_var.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_xml.c b/xdebug_xml.c index c1384968c..3d77a90bc 100644 --- a/xdebug_xml.c +++ b/xdebug_xml.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is | diff --git a/xdebug_xml.h b/xdebug_xml.h index d8d15e27e..54804a63d 100644 --- a/xdebug_xml.h +++ b/xdebug_xml.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | Xdebug | +----------------------------------------------------------------------+ - | Copyright (c) 2002-2010 Derick Rethans | + | Copyright (c) 2002-2011 Derick Rethans | +----------------------------------------------------------------------+ | This source file is subject to version 1.0 of the Xdebug license, | | that is bundled with this package in the file LICENSE, and is |