Skip to content

Commit

Permalink
Update text and changelog for #146.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Jan 25, 2014
1 parent dce1319 commit 0d3d991
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ title: Foundation Change Log

## Version 2.1 {#v2-1}

### v2.1.3@dev {#v2-1-3}

* Show database connection issues (if any) during installation process.

### v2.1.2 {#v2-1-2}

* Open hyperlink to extension author's URL on a new window/tab.
Expand Down
4 changes: 2 additions & 2 deletions src/views/install/index/_database.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
<button class="btn btn-danger disabled input-xlarge">
<?php echo trans('orchestra/foundation::install.connection.fail'); ?>
</button>
<?php if (! empty($databaseConnection['data']['error'])) : ?>
<?php if (isset($databaseConnection['data']['error'])) : ?>
<div class="alert alert-danger">
<?php echo $databaseConnection['data']['error']; ?>
<strong>Error:</strong> <?php echo $databaseConnection['data']['error']; ?>
</div>
<?php endif; ?>
<?php endif; ?>
Expand Down

0 comments on commit 0d3d991

Please sign in to comment.