This commit is contained in:
Marc Delisle
2005-12-30 22:43:49 +00:00
parent d303e6dd21
commit 6d10f738f9
2 changed files with 4 additions and 2 deletions

View File

@@ -10,6 +10,8 @@ $Source$
* librairies/mult_submits.inc.php: strong warning for DROP DATABASE
* tbl_printview.php: bug #1389165, Print view shows all columns as Null Yes
(MySQL 5.x)
* libraries/Config.class.php: patch #1392181, typo,
thanks to Luis Mirabal - normannormal
2005-12-27 Marc Delisle <lem9@users.sourceforge.net>
* main.php, libraries/check_user_privileges.lib.php:

View File

@@ -620,10 +620,10 @@ class PMA_Config
*/
function checkUpload()
{
$this->set('enbale_upload', true);
$this->set('enable_upload', true);
if ( strtolower(@ini_get('file_uploads')) == 'off'
|| @ini_get('file_uploads') == 0 ) {
$this->set('enbale_upload', false);
$this->set('enable_upload', false);
}
}