Added TorrentPier instance hash generation (#1726)

* Added `TorrentPier instance hash` generation

* Update CHANGELOG.md
This commit is contained in:
Roman Kelesidis 2024-12-31 12:16:59 +07:00 committed by GitHub
commit 11f5b50760
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 11 additions and 3 deletions

View file

@ -388,5 +388,5 @@ if (!empty($DB_HOST) && !empty($DB_DATABASE) && !empty($DB_USERNAME)) {
$conn->close();
out("- Importing SQL dump completed!\n", 'success');
out("- Voila! Good luck & have fun!", 'success');
rename(__FILE__, __FILE__ . '_' . hash('md5', time()));
rename(__FILE__, __FILE__ . '_' . hash('xxh128', time()));
}