Fix undefined variable in Config::save()

This commit is contained in:
Kijin Sung 2023-10-07 13:26:14 +09:00
parent 639ad7ad06
commit c0850865a4

View file

@ -164,7 +164,10 @@ class Config
} }
// Remove the backup file. // Remove the backup file.
if (isset($backup_filename))
{
Storage::delete($backup_filename); Storage::delete($backup_filename);
}
// Save XE-compatible config files. // Save XE-compatible config files.
$warning = '// THIS FILE IS NOT USED IN RHYMIX.' . "\n" . '// TO MODIFY SYSTEM CONFIGURATION, EDIT config.php INSTEAD.'; $warning = '// THIS FILE IS NOT USED IN RHYMIX.' . "\n" . '// TO MODIFY SYSTEM CONFIGURATION, EDIT config.php INSTEAD.';