bug #2222230 [import] Assigning a value in import.php

This commit is contained in:
Marc Delisle
2008-11-04 20:52:08 +00:00
parent bfda20f58e
commit a2a8959eb4
2 changed files with 3 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
3.0.2.0 (not yet released)
- [lang] Italian update, thanks to Luca and fantu
- bug #2107583 [GUI] Leading newline truncated, thanks to Isart Montane
- bug #2222230 [import] Assigning a value in import.php, thanks to
Glen Arason
3.0.1.1 (2008-10-30)
- [security] XSS in a Designer component

View File

@@ -200,7 +200,7 @@ if (empty($memory_limit)) {
$memory_limit = 2 * 1024 * 1024;
}
// In case no memory limit we work on 10MB chunks
if ($memory_limit = -1) {
if ($memory_limit == -1) {
$memory_limit = 10 * 1024 * 1024;
}