summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/CGI/Cookie.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/CGI/Cookie.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/CGI/Cookie.pm9
1 files changed, 5 insertions, 4 deletions
diff --git a/Master/tlpkg/tlperl/lib/CGI/Cookie.pm b/Master/tlpkg/tlperl/lib/CGI/Cookie.pm
index da916aca652..5cc2dc20038 100644
--- a/Master/tlpkg/tlperl/lib/CGI/Cookie.pm
+++ b/Master/tlpkg/tlperl/lib/CGI/Cookie.pm
@@ -3,6 +3,8 @@ package CGI::Cookie;
use strict;
use warnings;
+use if $] >= 5.019, 'deprecate';
+
# See the bottom of this file for the POD documentation. Search for the
# string '=head'.
@@ -16,7 +18,7 @@ use warnings;
# wish, but if you redistribute a modified version, please attach a note
# listing the modifications you have made.
-our $VERSION='1.30';
+our $VERSION='1.31';
use CGI::Util qw(rearrange unescape escape);
use overload '""' => \&as_string, 'cmp' => \&compare, 'fallback' => 1;
@@ -334,13 +336,12 @@ If the "httponly" attribute is set, the cookie will only be accessible
through HTTP Requests. This cookie will be inaccessible via JavaScript
(to prevent XSS attacks).
-This feature is only supported by recent browsers like Internet Explorer
-6 Service Pack 1, Firefox 3.0 and Opera 9.5 (and later of course).
+This feature is supported by nearly all modern browsers.
See these URLs for more information:
http://msdn.microsoft.com/en-us/library/ms533046.aspx
- http://www.owasp.org/index.php/HTTPOnly#Browsers_Supporting_HTTPOnly
+ http://www.browserscope.org/?category=security&v=top
=back