diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-01-01 04:51:29 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-01-01 04:51:29 +0000 |
commit | 0f1d0178097a7ea7d76df1a20fba3a73c4ba2da2 (patch) | |
tree | c136d5011dd2f0e2318446c4eb65b3e83c95db2e /templates/show_install_lang.inc.php | |
parent | 93b1be95c90992dfe5d89beba2ee5a53884b709d (diff) | |
download | ampache-0f1d0178097a7ea7d76df1a20fba3a73c4ba2da2.tar.gz ampache-0f1d0178097a7ea7d76df1a20fba3a73c4ba2da2.tar.bz2 ampache-0f1d0178097a7ea7d76df1a20fba3a73c4ba2da2.zip |
final commits before the release
Diffstat (limited to 'templates/show_install_lang.inc.php')
-rw-r--r-- | templates/show_install_lang.inc.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/templates/show_install_lang.inc.php b/templates/show_install_lang.inc.php index 91cb606b..a9edf27e 100644 --- a/templates/show_install_lang.inc.php +++ b/templates/show_install_lang.inc.php @@ -57,7 +57,7 @@ echo " <font color=\"red\">ERROR</font> " . phpversion(); $results = $results + 1; } else { - echo " <font color=\"green\"> OK </font> " . phpversion(); + echo " <font color=\"green\"> OK </font><i>" . phpversion() . "</i>"; } ?> </p> @@ -67,10 +67,11 @@ echo " <font color=\"red\">ERROR</font> "; $results = $results + 1; } else { - if(strcmp('5.0.0',mysql_get_server_info()) > 0) { - echo " <font color=\"#FF6600\"> WARNING </font> " . mysql_get_server_info() . "<strong>We recommend MySQL version more than 5.0.0</strong>"; + if(strcmp('5.0.0',mysql_get_client_info()) > 0) { + echo " <font color=\"#FF6600\"> WARNING </font> " . mysql_get_client_info() . "<strong>We recommend MySQL version more than 5.0.0</strong>"; } else { - echo " <font color=\"green\"> OK </font> " . mysql_get_server_info(); + echo " <font color=\"green\"> OK </font>"; + echo "<i>" . mysql_get_client_info() . "</i>"; } } ?> @@ -116,7 +117,7 @@ ?> </p> <hr /> - <h4><?php echo _('Option'); ?></h4> + <h4><?php echo _('Optional'); ?></h4> <p><?php echo _('Gettext Support'); ?>: <?php if (!function_exists('gettext')) { |