bug #1793763 minimum PHP should be 4.2.0
This commit is contained in:
parent
6cdb219a2c
commit
9d28628fc7
@ -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)
|
||||
|
||||
|
||||
@ -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>
|
||||
|
||||
5
main.php
5
main.php
@ -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";
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user