Skip to content

Commit

Permalink
Oracle: DB version information split on 2 lines
Browse files Browse the repository at this point in the history
The version info contains a newline char, so we use nl2br() to split the
line to improve readability
  • Loading branch information
dregad committed Oct 16, 2013
1 parent fa9acbb commit 124ad55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/install.php
Expand Up @@ -397,7 +397,7 @@ function InsertData( $p_table, $p_data ) {
# due to a bug in ADODB, this call prompts warnings, hence the @
# the check only works on mysql if the database is open
$t_version_info = @$g_db->ServerInfo();
echo '<br /> Running ' . $f_db_type . ' version ' . $t_version_info['description'];
echo '<br /> Running ' . $f_db_type . ' version ' . nl2br( $t_version_info['description'] );
?>
</td>
<?php
Expand Down

0 comments on commit 124ad55

Please sign in to comment.