Skip to content

Commit

Permalink
Item12180: Missing a return value for CSR
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@16167 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
TimotheLitt authored and TimotheLitt committed Dec 7, 2012
1 parent cf4d59a commit b644eec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/lib/Foswiki/Configure/Checkers/WebMasterName.pm
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,10 @@ $keypass
print $f $output;
close $f or return ( 0, $this->ERROR("Close failed saving CSR: $!") );

return ( 1,
"Your private key has been created. Your certificate signing request is displayed below. Please transmit it to your CA, then proceed to the Install button. Do NOT click either action button again, as it will over-write the private key, rendering the CSR useless.<pre>$output</pre>"
return (
1,
"Your private key has been created. Your certificate signing request is displayed below. Please transmit it to your CA, then proceed to the Install button. Do NOT click either action button again, as it will over-write the private key, rendering the CSR useless.<pre>$output</pre>",
$keypass,
);
}

Expand Down

0 comments on commit b644eec

Please sign in to comment.