Skip to content

Commit

Permalink
Applying patch to clarify Schema error message. Fixed #5337
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Aug 28, 2009
1 parent ae715ef commit 98c2801
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cake/console/libs/schema.php
Expand Up @@ -117,7 +117,8 @@ function view() {
$this->out($File->read());
$this->_stop();
} else {
$this->err(__('Schema could not be found', true));
$file = $this->Schema->path . DS . $this->params['file'];
$this->err(sprintf(__('Schema file (%s) could not be found.', true), $file));
$this->_stop();
}
}
Expand Down

0 comments on commit 98c2801

Please sign in to comment.