We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e74d92d commit ac0a83bCopy full SHA for ac0a83b
resources/views/components/finishing.blade.php
@@ -69,6 +69,14 @@
69
} catch (Exception $e) {}
70
}
71
72
+ try {
73
+ $file = base_path('storage/RSTAC');
74
+ if (file_exists($file)) {
75
+ copy(base_path('storage/templates/advanced-config.php'), base_path('config/advanced-config.php'));
76
+ unlink($file);
77
+ }
78
+ } catch (Exception $e) {}
79
+
80
// Footer page customization
81
if(EnvEditor::keyExists('DISPLAY_FOOTER_HOME')){} else {EnvEditor::addKey('DISPLAY_FOOTER_HOME', 'true');}
82
if(EnvEditor::keyExists('DISPLAY_FOOTER_TERMS')){} else {EnvEditor::addKey('DISPLAY_FOOTER_TERMS', 'true');}
0 commit comments