Skip to content
Snippets Groups Projects
Commit 8bcb90fc authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: syntax error

parent becda06f
No related branches found
No related tags found
No related merge requests found
......@@ -724,7 +724,7 @@ function write_main_file($mainfile,$main_dir)
clearstatcache();
fputs($fp, '<?php'."\n");
fputs($fp, "// Wrapper to include main into htdocs\n");
fputs($fp, "include_once '".$main_dir.'/main.inc.php');\n';
fputs($fp, "include_once '".$main_dir."/main.inc.php';\n");
fputs($fp, '?>');
fclose($fp);
}
......@@ -746,7 +746,7 @@ function write_master_file($masterfile,$main_dir)
clearstatcache();
fputs($fp, '<?php'."\n");
fputs($fp, "// Wrapper to include master into htdocs\n");
fputs($fp, "include_once '".$main_dir.'/master.inc.php');\n';
fputs($fp, "include_once '".$main_dir."/master.inc.php';\n");
fputs($fp, '?>');
fclose($fp);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment