summaryrefslogtreecommitdiff
path: root/pinyweb/cgi-bin/checkconstraint.cgi
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@cobain.omgwallhack.org>2018-09-24 23:09:57 -0700
committerJoe Rayhawk <jrayhawk@cobain.omgwallhack.org>2018-09-24 23:09:57 -0700
commit9f5b32d7833cce9171bc0035657693c7d73afc84 (patch)
tree4424701509951cb1f78d6d078f2d60d020a33148 /pinyweb/cgi-bin/checkconstraint.cgi
parent8e3dd1d39eced80d229ef411b193417d10067074 (diff)
downloadpiny-code-9f5b32d7833cce9171bc0035657693c7d73afc84.tar.gz
piny-code-9f5b32d7833cce9171bc0035657693c7d73afc84.zip
pinyweb: scalarizing CGI params because perl
Because not everyone wants to Perl Jam.
Diffstat (limited to 'pinyweb/cgi-bin/checkconstraint.cgi')
-rwxr-xr-xpinyweb/cgi-bin/checkconstraint.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/pinyweb/cgi-bin/checkconstraint.cgi b/pinyweb/cgi-bin/checkconstraint.cgi
index e0a59c3..8a36569 100755
--- a/pinyweb/cgi-bin/checkconstraint.cgi
+++ b/pinyweb/cgi-bin/checkconstraint.cgi
@@ -15,8 +15,8 @@ if ( $q->request_method( ) eq "OPTIONS" ) {
print "Status: 200 OK\nAccess-Control-Allow-Headers: *\nAccess-Control-Allow-Methods: GET, OPTIONS, POST\nAccess-Control-Allow-Origin: *\nAccess-Control-Max-Age: 3600\nContent-Type: text/plain\n\n";
} else {
- my $type = $q->param( 't' );
- my $value = $q->param( 'v' );
+ my $type = scalar( $q->param('t') );
+ my $value = scalar( $q->param('v') );
if ( not defined $type or not defined $value ) {
print "Status: 200 OK\nContent-type: application/json\n\n";