Skip to content

Commit

Permalink
Moniro update to file construction.
Browse files Browse the repository at this point in the history
  • Loading branch information
predominant committed Mar 28, 2010
1 parent 95c1ab3 commit 289a4e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/file.php
Expand Up @@ -97,7 +97,7 @@ function __construct($path, $create = false, $mode = 0755) {
$this->name = basename($path);
}
$this->pwd();
!$this->exists() && $create === true && $this->safe($path) && $this->create();
!$this->exists() && $create && $this->safe($path) && $this->create();
}
/**
* Closes the current file if it is opened
Expand Down

0 comments on commit 289a4e9

Please sign in to comment.