bug #1793763 minimum PHP should be 4.2.0

This commit is contained in:
Marc Delisle 2007-09-13 20:48:07 +00:00
parent 6cdb219a2c
commit 9d28628fc7
3 changed files with 4 additions and 4 deletions

View File

@ -20,6 +20,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #1774825 [operations] Rename database loses charset info
- bug #1791568 [core] Undefined cfg, thanks to Christian Schmidt
- bug #1782332 [structure] New table form does not overtake data
- bug #1793763 [requirements] minimum PHP should be 4.2.0
2.11.0.0 (2007-08-21)

View File

@ -56,7 +56,7 @@
<h2 id="require">Requirements</h2>
<ul><li><b>PHP</b>
<ul><li>You need PHP 4.1.0 or newer, with <tt>session</tt> support
<ul><li>You need PHP 4.2.0 or newer, with <tt>session</tt> support
(<a href="#faq1_31">see
<abbr title="Frequently Asked Questions">FAQ</abbr> 1.31</a>)
</li>

View File

@ -370,10 +370,9 @@ if ($GLOBALS['using_mb_charset'] && !@extension_loaded('mbstring')) {
/**
* Warning for old PHP version
* modified: 2004-05-05 mkkeck
*/
if (PMA_PHP_INT_VERSION < 40100) {
echo '<div class="warning">' . sprintf($strUpgrade, 'PHP', '4.1.0') . '</div>' . "\n";
if (PMA_PHP_INT_VERSION < 40200) {
echo '<div class="warning">' . sprintf($strUpgrade, 'PHP', '4.2.0') . '</div>' . "\n";
}
/**