Check whether UploadDir is defined before using it.

This commit is contained in:
Michal Čihař
2008-04-22 11:26:24 +00:00
parent 7c8e036ed4
commit 3174c8f873

View File

@@ -449,6 +449,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'];