bug #1817224 [import] Incorrect detection of file_uploads in some cases

This commit is contained in:
Marc Delisle
2007-11-05 12:24:13 +00:00
parent d6da079aaf
commit 8b67c1819b
2 changed files with 12 additions and 4 deletions

View File

@@ -22,6 +22,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- wrong default charset in case of broken session
- bug #1824506 [profiling] Profile command repeated on older MySQL servers
- bug #1825172 [export] Exporting and functions
- bug #1817224 [import] Incorrect detection of file_uploads in some cases,
thanks to Juergen Wind
2.11.2.0 (2007-10-27)
- patch #1791576 HTTP auth: support REDIRECT_REMOTE_USER, thanks to Allard

View File

@@ -745,13 +745,19 @@ class PMA_Config
* checks if upload is enabled
*
*/
function checkUpload()
{
$this->set('enable_upload', true);
if (strtolower(@ini_get('file_uploads')) == 'off'
|| @ini_get('file_uploads') == 0) {
if (ini_get('file_uploads')) {
$this->set('enable_upload', true);
// if set "php_admin_value file_uploads Off" in httpd.conf
// ini_get() also returns the string "Off" in this case:
if ('off' == strtolower(ini_get('file_uploads'))) {
$this->set('enable_upload', false);
}
} else {
$this->set('enable_upload', false);
}
}
}
/**