Skip to content

Commit

Permalink
- fixed PHP notice
Browse files Browse the repository at this point in the history
  • Loading branch information
koto committed Nov 23, 2010
1 parent 0c35c11 commit 625dc3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phar-file-checksums.php
Expand Up @@ -149,7 +149,7 @@
}
catch(Exception $e) {
// Dump our file of checksums now, so that we can use it later.
if (!((bool) $options['nowrite_checksums'])) {
if (empty($options['nowrite_checksums'])) {
file_put_contents($options['checksum_file'], json_encode($checksums));
}
if (!QUIET_MODE) {
Expand Down

1 comment on commit 625dc3d

@katanacrimson
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Herp a derp! Whoopsie. D:

Please sign in to comment.