diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/CGI/Pretty.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/CGI/Pretty.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/CGI/Pretty.pm b/Master/tlpkg/tlperl/lib/CGI/Pretty.pm index 869fe0cdf2e..acded21e6d8 100644 --- a/Master/tlpkg/tlperl/lib/CGI/Pretty.pm +++ b/Master/tlpkg/tlperl/lib/CGI/Pretty.pm @@ -8,9 +8,10 @@ package CGI::Pretty; # Perl 5 distribution). use strict; +use if $] >= 5.019, 'deprecate'; use CGI (); -$CGI::Pretty::VERSION = '3.46'; +$CGI::Pretty::VERSION = '3.64'; $CGI::DefaultClass = __PACKAGE__; $CGI::Pretty::AutoloadClass = 'CGI'; @CGI::Pretty::ISA = qw( CGI ); @@ -168,7 +169,7 @@ sub initialize_globals { # This is the string used for indentation of tags $CGI::Pretty::INDENT = "\t"; - # This is the string used for seperation between tags + # This is the string used for separation between tags $CGI::Pretty::LINEBREAK = $/; # These tags are not prettify'd. |