summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan2010-02-21 12:57:04 +0100
committerStefan2010-02-21 12:57:04 +0100
commitd79be08743e0e6746406718d56c0c0b15490b50e (patch)
tree1ffcc1c62e1980c367975e37d3115a15cc379204
parent526b738dda6aae0d73b978e1fa68144e8bccb7e5 (diff)
Fix copyright notice (years) in code
-rw-r--r--suhosin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/suhosin.c b/suhosin.c
index a79937b..aa34ca3 100644
--- a/suhosin.c
+++ b/suhosin.c
@@ -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", 65 "Copyright (c) 2007-2010",
66 suhosin_module_startup, 66 suhosin_module_startup,
67 suhosin_shutdown, 67 suhosin_shutdown,
68 NULL, 68 NULL,
@@ -1204,10 +1204,10 @@ PHP_MINFO_FUNCTION(suhosin)
1204 PUTS(!sapi_module.phpinfo_as_text?"<br /><br />":"\n\n"); 1204 PUTS(!sapi_module.phpinfo_as_text?"<br /><br />":"\n\n");
1205 if (sapi_module.phpinfo_as_text) { 1205 if (sapi_module.phpinfo_as_text) {
1206 PUTS("Copyright (c) 2006-2007 Hardened-PHP Project\n"); 1206 PUTS("Copyright (c) 2006-2007 Hardened-PHP Project\n");
1207 PUTS("Copyright (c) 2007-2008 SektionEins GmbH\n"); 1207 PUTS("Copyright (c) 2007-2010 SektionEins GmbH\n");
1208 } else { 1208 } else {
1209 PUTS("Copyright (c) 2006-2007 <a href=\"http://www.hardened-php.net/\">Hardened-PHP Project</a><br />\n"); 1209 PUTS("Copyright (c) 2006-2007 <a href=\"http://www.hardened-php.net/\">Hardened-PHP Project</a><br />\n");
1210 PUTS("Copyright (c) 2007-2008 <a href=\"http://www.sektioneins.de/\">SektionEins GmbH</a>\n"); 1210 PUTS("Copyright (c) 2007-2010 <a href=\"http://www.sektioneins.de/\">SektionEins GmbH</a>\n");
1211 } 1211 }
1212 php_info_print_box_end(); 1212 php_info_print_box_end();
1213 1213