Browse code

Import from the old rivettracker git repository at sourceforge (amisaph/amisapphire branch)

Clarissa Walker (ami-sapphire) authored on 2014/01/24 14:02:23
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,12 @@
1
+<?php
2
+//takes information from installer.php and creates config.php file
3
+//allows user to save config.php
4
+
5
+header('content-type: application/octet-stream');
6
+header("Content-Disposition: attachment; filename=\"config.php\"");
7
+
8
+print "<?php $config = " . var_export($config, true)  . ";"
9
+
10
+
11
+
12
+?>