From 860adb9c2cb61c6daf146add3a3e3d20cddc6d80 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Wed, 8 Feb 2006 20:22:46 +0000 Subject: [PATCH] typo --- lib/WebGUI/Operation/Spectre.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Operation/Spectre.pm b/lib/WebGUI/Operation/Spectre.pm index 6d5fb6001..536d0ca6d 100644 --- a/lib/WebGUI/Operation/Spectre.pm +++ b/lib/WebGUI/Operation/Spectre.pm @@ -34,7 +34,7 @@ Checks to ensure the requestor is who we think it is, and then executes a spectr sub www_spectre { my $session = shift; - return $session->privilege->insufficient unless(isInSubnet($session->env->get("REMOTE_ADDR"), $session->config->get("spectreSubnets")); + return $session->privilege->insufficient unless (isInSubnet($session->env->get("REMOTE_ADDR"), $session->config->get("spectreSubnets"))); my $cipher = Crypt::Blowfish->new($session->config->get("spectreCryptoKey")); my $payload = jsonToObj($cipher->decrypt($session->form->get("payload"))); my $out = {};