summaryrefslogtreecommitdiff
path: root/suhosin.c
diff options
context:
space:
mode:
authorStefan Esser2014-02-11 12:41:02 +0100
committerStefan Esser2014-02-11 12:41:02 +0100
commit4c7050932250b9103d91d9b5a4cea95b8aca2b6a (patch)
tree38daf71fc9e7dc90ce9e28a181accd3b673ee0fa /suhosin.c
parenta97451f504bd41db897cea6a93e557664b535f8b (diff)
Fix year in copyright
Diffstat (limited to 'suhosin.c')
-rw-r--r--suhosin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/suhosin.c b/suhosin.c
index c04655b..299f407 100644
--- a/suhosin.c
+++ b/suhosin.c
@@ -3,7 +3,7 @@
3 | Suhosin Version 1 | 3 | Suhosin Version 1 |
4 +----------------------------------------------------------------------+ 4 +----------------------------------------------------------------------+
5 | Copyright (c) 2006-2007 The Hardened-PHP Project | 5 | Copyright (c) 2006-2007 The Hardened-PHP Project |
6 | Copyright (c) 2007-2012 SektionEins GmbH | 6 | Copyright (c) 2007-2014 SektionEins GmbH |
7 +----------------------------------------------------------------------+ 7 +----------------------------------------------------------------------+
8 | This source file is subject to version 3.01 of the PHP license, | 8 | This source file is subject to version 3.01 of the PHP license, |
9 | that is bundled with this package in the file LICENSE, and is | 9 | that is bundled with this package in the file LICENSE, and is |
@@ -62,7 +62,7 @@ STATIC zend_extension suhosin_zend_extension_entry = {
62 SUHOSIN_EXT_VERSION, 62 SUHOSIN_EXT_VERSION,
63 "SektionEins GmbH", 63 "SektionEins GmbH",
64 "http://www.suhosin.org", 64 "http://www.suhosin.org",
65 "Copyright (c) 2007-2012", 65 "Copyright (c) 2007-2014",
66 suhosin_module_startup, 66 suhosin_module_startup,
67 suhosin_shutdown, 67 suhosin_shutdown,
68 NULL, 68 NULL,
@@ -1250,10 +1250,10 @@ PHP_MINFO_FUNCTION(suhosin)
1250 PUTS(!sapi_module.phpinfo_as_text?"<br /><br />":"\n\n"); 1250 PUTS(!sapi_module.phpinfo_as_text?"<br /><br />":"\n\n");
1251 if (sapi_module.phpinfo_as_text) { 1251 if (sapi_module.phpinfo_as_text) {
1252 PUTS("Copyright (c) 2006-2007 Hardened-PHP Project\n"); 1252 PUTS("Copyright (c) 2006-2007 Hardened-PHP Project\n");
1253 PUTS("Copyright (c) 2007-2012 SektionEins GmbH\n"); 1253 PUTS("Copyright (c) 2007-2014 SektionEins GmbH\n");
1254 } else { 1254 } else {
1255 PUTS("Copyright (c) 2006-2007 <a href=\"http://www.hardened-php.net/\">Hardened-PHP Project</a><br />\n"); 1255 PUTS("Copyright (c) 2006-2007 <a href=\"http://www.hardened-php.net/\">Hardened-PHP Project</a><br />\n");
1256 PUTS("Copyright (c) 2007-2012 <a href=\"http://www.sektioneins.de/\">SektionEins GmbH</a>\n"); 1256 PUTS("Copyright (c) 2007-2014 <a href=\"http://www.sektioneins.de/\">SektionEins GmbH</a>\n");
1257 } 1257 }
1258 php_info_print_box_end(); 1258 php_info_print_box_end();
1259 1259