From 60df7c89bf8eb6f20a41600a6186a990561eb77a Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sat, 31 Mar 2007 03:43:13 +0200 Subject: [PATCH] minor code cleanups and clarifications --- PLP/Functions.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PLP/Functions.pm b/PLP/Functions.pm index b4891ee..fe1f39c 100644 --- a/PLP/Functions.pm +++ b/PLP/Functions.pm @@ -4,8 +4,8 @@ use base 'Exporter'; use Fcntl qw(:flock); use strict; -our @EXPORT = qw/Entity DecodeURI EncodeURI include PLP_END - AddCookie ReadFile WriteFile AutoURL Counter Include exit/; +our @EXPORT = qw/Entity DecodeURI EncodeURI Include include PLP_END + AddCookie ReadFile WriteFile AutoURL Counter exit/; sub Include ($) { no strict; @@ -37,7 +37,7 @@ sub Entity (@) { for (@$ref) { eval { s/&/&/g; - s/\"/"/g; + s/"/"/g; s//>/g; s/\n/
\n/g; @@ -144,7 +144,7 @@ sub AutoURL ($) { $$ref =~ s/>\cC>/>/g; $$ref =~ s/<\cC blocks, because t =item Entity LIST -Replaces HTML syntax characters by HTML entities, so they can be displayed literally. You should always use this on user input (or database output), to avoid cross-site-scripting vurnerabilities. This function does not do everything the L does. +Replaces HTML syntax characters by HTML entities, so they can be displayed literally. You should always use this when displaying user input (or database output), to avoid cross-site-scripting vurnerabilities. In void context, B the values of the given variables. In other contexts, returns the changed versions. -- 2.30.0