Skip to content

Commit

Permalink
Item12952: Fix up validation of path
Browse files Browse the repository at this point in the history
Thanks CDot
  • Loading branch information
gac410 committed Aug 29, 2014
1 parent 9bd301f commit d7c5218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/Foswiki/Configure/Wizards/ScriptHash.pm
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ sub verify {

my $info = JSON->new->decode($data);

unless ( ref($info) && $info->{ENV}->{SCRIPT_NAME} ) {
unless ( ref($info) && defined $info->{ENV}->{SCRIPT_NAME} ) {
$reporter->ERROR(
"Server returned incorrect diagnostic data: =$data= ");
}
Expand Down

0 comments on commit d7c5218

Please sign in to comment.