From 90d86a9744883ccc120a0a955ffade72990e1505 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Thu, 14 Apr 2016 21:03:00 +0200 Subject: Bug 1088022 - Bump min version to CGI 4.09 r=dkl --- editwhines.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editwhines.cgi') diff --git a/editwhines.cgi b/editwhines.cgi index 6597db893..d545845b1 100755 --- a/editwhines.cgi +++ b/editwhines.cgi @@ -125,8 +125,8 @@ if ($cgi->param('update')) { } else { # check the subject, body and mailifnobugs for changes - my $subject = ($cgi->param("event_${eventid}_subject") or ''); - my $body = ($cgi->param("event_${eventid}_body") or ''); + my $subject = $cgi->param("event_${eventid}_subject") // ''; + my $body = $cgi->param("event_${eventid}_body") // ''; my $mailifnobugs = $cgi->param("event_${eventid}_mailifnobugs") ? 1 : 0; trick_taint($subject) if $subject; -- cgit v1.2.3-24-g4f1b