summaryrefslogtreecommitdiffstats
path: root/templates/show_install_lang.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-01-01 04:51:29 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-01-01 04:51:29 +0000
commit0f1d0178097a7ea7d76df1a20fba3a73c4ba2da2 (patch)
treec136d5011dd2f0e2318446c4eb65b3e83c95db2e /templates/show_install_lang.inc.php
parent93b1be95c90992dfe5d89beba2ee5a53884b709d (diff)
downloadampache-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.php11
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\">&nbsp;&nbsp;&nbsp;OK&nbsp;&nbsp;&nbsp;&nbsp;</font> " . phpversion();
+ echo " <font color=\"green\">&nbsp;&nbsp;&nbsp;OK&nbsp;&nbsp;&nbsp;&nbsp;</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\">&nbsp;&nbsp;&nbsp;WARNING&nbsp;&nbsp;&nbsp;&nbsp;</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\">&nbsp;&nbsp;&nbsp;WARNING&nbsp;&nbsp;&nbsp;&nbsp;</font> " . mysql_get_client_info() . "<strong>We recommend MySQL version more than 5.0.0</strong>";
} else {
- echo " <font color=\"green\">&nbsp;&nbsp;&nbsp;OK&nbsp;&nbsp;&nbsp;&nbsp;</font> " . mysql_get_server_info();
+ echo " <font color=\"green\">&nbsp;&nbsp;&nbsp;OK&nbsp;&nbsp;&nbsp;&nbsp;</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')) {