mirror of
https://github.com/prasathmani/tinyfilemanager
synced 2026-03-14 12:45:51 +01:00
Save $CONFIG to config.php if it exists (#1144)
Writes $CONFIG variable to the main plugin file, unless there is a config.php
This commit is contained in:
parent
3716af20a2
commit
1042994a60
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue