mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 08:41:39 +09:00
Fix undefined variable in Config::save()
This commit is contained in:
parent
639ad7ad06
commit
c0850865a4
1 changed files with 4 additions and 1 deletions
|
|
@ -164,7 +164,10 @@ class Config
|
|||
}
|
||||
|
||||
// Remove the backup file.
|
||||
Storage::delete($backup_filename);
|
||||
if (isset($backup_filename))
|
||||
{
|
||||
Storage::delete($backup_filename);
|
||||
}
|
||||
|
||||
// Save XE-compatible config files.
|
||||
$warning = '// THIS FILE IS NOT USED IN RHYMIX.' . "\n" . '// TO MODIFY SYSTEM CONFIGURATION, EDIT config.php INSTEAD.';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue