mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
fix PHP TypeError "first param must be string, not null", if backup-dir does not exist
This commit is contained in:
parent
8da7b09bfa
commit
18ba129be8
@ -201,12 +201,12 @@ class Backup
|
||||
}
|
||||
if (!$name)
|
||||
{
|
||||
$name = $this->backup_dir.'/db_backup-'.date('YmdHi');
|
||||
if (empty($this->backup_dir) || !is_writable($this->backup_dir))
|
||||
{
|
||||
$this->log($name, $reading, null, lang("backupdir '%1' is not writeable by the webserver", $this->backup_dir));
|
||||
throw new Exception(lang("backupdir '%1' is not writeable by the webserver", $this->backup_dir));
|
||||
}
|
||||
$name = $this->backup_dir.'/db_backup-'.date('YmdHi');
|
||||
}
|
||||
// remove the extension, to use the correct wrapper based on the extension
|
||||
elseif ($un_compress)
|
||||
|
Loading…
Reference in New Issue
Block a user