Browse Source

Close lockfile handle before trying to unlink during update.

tsimmons 7 years ago
parent
commit
8231c039ed
1 changed files with 3 additions and 1 deletions
  1. 3 1
      update.php

+ 3 - 1
update.php

@@ -404,6 +404,8 @@
 
 	PluginHost::getInstance()->run_commands($options);
 
-	if (file_exists(LOCK_DIRECTORY . "/$lock_filename"))
+	if (file_exists(LOCK_DIRECTORY . "/$lock_filename")) {
+		fclose($lock_handle);
 		unlink(LOCK_DIRECTORY . "/$lock_filename");
+	}
 ?>