Skip to content

Commit e1ba46f

Browse files
committed
Fix warning messages that cookie file does not exist when attempting to delete it.
1 parent eb9aca5 commit e1ba46f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/jobesandbox.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public function execute($sourcecode, $language, $input, $files = null, $params =
257257
}
258258

259259
// Delete the cookie file.
260-
unlink($cookiefile);
260+
@unlink($cookiefile);
261261

262262
$runresult = [];
263263
$runresult['sandboxinfo'] = [

0 commit comments

Comments
 (0)