summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-01-23 00:12:11 +0100
committerbbaetz%student.usyd.edu.au <>2002-01-23 00:12:11 +0100
commit4c07cc48093b6233be5298606f87b82a64f54768 (patch)
tree3079847595ffa994988b22931d84246cfab576a7 /globals.pl
parent8e2dfa5ab6404088b65f14b0e3f39362a0b5967d (diff)
downloadbugzilla-4c07cc48093b6233be5298606f87b82a64f54768.tar.gz
bugzilla-4c07cc48093b6233be5298606f87b82a64f54768.tar.xz
Bug 121074 - taint error after changing bug
r=daa@distributed.net,jake
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl
index 37ecdafbe..d8e5672e0 100644
--- a/globals.pl
+++ b/globals.pl
@@ -213,7 +213,7 @@ sub SendSQL {
# b) We want to know who called SendSQL...
# Is there a better way to do b?
if (is_tainted($str)) {
- die "Attempted to send tainted string to the database";
+ die "Attempted to send tainted string '$str' to the database";
}
my $iswrite = ($str =~ /^(INSERT|REPLACE|UPDATE|DELETE)/i);