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

Fix: Removed warnings

parent 49b67817
No related branches found
No related tags found
No related merge requests found
......@@ -690,7 +690,7 @@ pFooter($error,$setuplang,'jsinfo');
*/
function write_main_file($mainfile,$main_dir)
{
$fp = fopen("$mainfile", "w");
$fp = @fopen("$mainfile", "w");
if($fp)
{
clearstatcache();
......@@ -712,7 +712,7 @@ function write_main_file($mainfile,$main_dir)
*/
function write_master_file($masterfile,$main_dir)
{
$fp = fopen("$masterfile", "w");
$fp = @fopen("$masterfile", "w");
if($fp)
{
clearstatcache();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment