Check whether UploadDir is defined before using it.

This commit is contained in:
Michal Čihař
2008-04-22 11:26:24 +00:00
parent f5f4b78841
commit 02491a4f85

View File

@@ -466,6 +466,8 @@ class PMA_File
*/ */
function setLocalSelectedFile($name) function setLocalSelectedFile($name)
{ {
if (empty($GLOBALS['cfg']['UploadDir'])) return false;
$this->setName(PMA_userDir($GLOBALS['cfg']['UploadDir']) . PMA_securePath($name)); $this->setName(PMA_userDir($GLOBALS['cfg']['UploadDir']) . PMA_securePath($name));
if (! $this->isReadable()) { if (! $this->isReadable()) {
$this->_error_message = $GLOBALS['strFileCouldNotBeRead']; $this->_error_message = $GLOBALS['strFileCouldNotBeRead'];