summaryrefslogtreecommitdiffstats
path: root/app/helpers.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers.php')
-rw-r--r--app/helpers.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers.php b/app/helpers.php
index 3bb0c1d..a7e68ae 100644
--- a/app/helpers.php
+++ b/app/helpers.php
@@ -71,7 +71,7 @@ function removeCustomFiles()
];
foreach ($toRemove as $path) {
- if (file_exists($path)) {
+ if (is_file($path)) {
unlink($path);
}
}