aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/weird_syntax_in_aggregate.pm.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'doc/bugs/weird_syntax_in_aggregate.pm.mdwn')
-rw-r--r--doc/bugs/weird_syntax_in_aggregate.pm.mdwn9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/bugs/weird_syntax_in_aggregate.pm.mdwn b/doc/bugs/weird_syntax_in_aggregate.pm.mdwn
new file mode 100644
index 000000000..632ff2c35
--- /dev/null
+++ b/doc/bugs/weird_syntax_in_aggregate.pm.mdwn
@@ -0,0 +1,9 @@
+ open (IN, "$config{wikistatedir}/aggregate" ||
+ die "$config{wikistatedir}/aggregate: $!");
+
+It looks like the intent was "open this file, and die if you can't",
+but I'm pretty sure it actually means "open this file and ignore errors
+silently". Shouldn't this be `open(IN, $file) || die "$file: $!";`
+(i.e. with the parens before the call to `die`)? --Ethan
+
+> Thanks, [[done]] --[[Joey]]