Skip to content

Commit

Permalink
MDL-31172 fix variable name typo in backup file logger
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Jan 21, 2012
1 parent f6b4ec2 commit 64cec5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backup/util/loggers/file_logger.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function __sleep() {
public function __wakeup() {
if ($this->level > backup::LOG_NONE) { // Only create the file if we are going to log something
if (! $this->fhandle = fopen($this->fullpath, 'a')) {
throw new base_logger_exception('error_opening_file', $fullpath);
throw new base_logger_exception('error_opening_file', $this->fullpath);
}
}
}
Expand Down

0 comments on commit 64cec5b

Please sign in to comment.