Commit a67d3b47 authored by Franco Fichtner's avatar Franco Fichtner

config: mute potential unlink error

(cherry picked from commit f903f986)
parent a3c5c27b
...@@ -296,7 +296,7 @@ function cleanup_backups() ...@@ -296,7 +296,7 @@ function cleanup_backups()
$cnt=1; $cnt=1;
foreach ($cnf->getBackups() as $filename) { foreach ($cnf->getBackups() as $filename) {
if ($cnt > $revisions ) { if ($cnt > $revisions ) {
unlink($filename); @unlink($filename);
} }
++$cnt ; ++$cnt ;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment