convert ssi html files to php code
[minimedit.git] / edit.php
index 357d3a429bde2c04f82bb0a452e32cad4f7f2320..afa6c6d4868c1948ade99c31579726d52ea9a358 100755 (executable)
--- a/edit.php
+++ b/edit.php
@@ -29,8 +29,8 @@ if (!strlen($upload)) {
        exit;
 }
 
-$prepend = '<!--#include virtual="/head.inc.html" -->'."\n\n";
-$append  = "\n".'<!--#include virtual="/foot.inc.html" -->'."\n";
+$prepend = "<?php include 'head.inc.php'; ?>\n\n";
+$append  = "\n";
 
 if (!file_put_contents($filename, $prepend . $upload . $append))
        abort('500 save error', "fout bij schrijven van $filename");