1
0
mirror of https://github.com/prasathmani/tinyfilemanager.git synced 2025-05-06 07:15:26 +02:00

Save $CONFIG to config.php if it exists ()

Writes $CONFIG variable to the main plugin file, unless there is a config.php
This commit is contained in:
Rolf Allard van Hagen 2024-10-14 05:39:03 +02:00 committed by GitHub
parent 3716af20a2
commit 1042994a60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -3598,7 +3598,8 @@ class FM_Zipper_Tar
function save()
{
$fm_file = __FILE__;
global $config_file;
$fm_file = is_readable($config_file) ? $config_file : __FILE__;
$var_name = '$CONFIG';
$var_value = var_export(json_encode($this->data), true);
$config_string = "<?php" . chr(13) . chr(10) . "//Default Configuration".chr(13) . chr(10)."$var_name = $var_value;" . chr(13) . chr(10);