Closes #102 add MySQL version to settings page

merge-requests/2/head
Mike Koch 9 years ago
parent 71fd581dde
commit 029e2ffa65

@ -141,10 +141,10 @@ if ( defined('HESK_DEMO') )
?> ?>
</td></tr> </td></tr>
<tr> <tr>
<td class="text-right"> <td class="text-right" style="padding-bottom: 5px">
<?php echo $hesklang['mods_for_hesk_version']; ?>: <?php echo $hesklang['mods_for_hesk_version']; ?>:
</td> </td>
<td style="padding-left: 10px"> <td style="padding-left: 10px; padding-bottom: 5px">
<?php echo $modsForHeskVersion; ?> <?php echo $modsForHeskVersion; ?>
</td> </td>
</tr> </tr>
@ -153,6 +153,11 @@ if ( defined('HESK_DEMO') )
</td><td style="padding-left: 10px"> </td><td style="padding-left: 10px">
<?php echo defined('HESK_DEMO') ? $hesklang['hdemo'] : PHP_VERSION . ' ' . (function_exists('mysqli_connect') ? '(MySQLi)' : '(MySQL)'); ?> <?php echo defined('HESK_DEMO') ? $hesklang['hdemo'] : PHP_VERSION . ' ' . (function_exists('mysqli_connect') ? '(MySQLi)' : '(MySQL)'); ?>
</td></tr> </td></tr>
<tr><td class="text-right" style="padding-bottom: 5px">
<?php echo $hesklang['mysqlv']; ?>:
</td><td style="padding-left: 10px; padding-bottom: 5px">
<?php echo defined('HESK_DEMO') ? $hesklang['hdemo'] : hesk_dbResult( hesk_dbQuery('SELECT VERSION() AS version') ); ?>
</td></tr>
<tr> <tr>
<td class="text-right"> <td class="text-right">
/hesk_settings.inc.php /hesk_settings.inc.php

Loading…
Cancel
Save