Priority: Urgent
Current State: Closed
Released In: 1.1.9
Target Release: patch
Applies To: Engine
Component: configure
Branches: Release01x01 trunk
See
Support.Question1276
open my $fh, '>', $name
|| return 'Could not create test file ' . $name . ':' . $!;
needs to become
open my $fh, '>', $name
or return 'Could not create test file ' . $name . ':' . $!;
This needs to be checked elsewhere, but 2 occurrences are in Checker.pm.
--
GeorgeClark - 10 Apr 2013
Cursory check of the rest of Foswiki didn't find any other examples like this.
But a semi-related error was found, the BasicSanity checker results are never returned to the user even when the system status is considered "insane".
--
GeorgeClark - 10 Apr 2013