Update thepiratebay.php

This commit is contained in:
amogusussy 2022-11-30 17:09:16 +00:00 committed by GitHub
parent da83515423
commit 9c471f9c15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@
array (
"size" => htmlspecialchars($size),
"name" => htmlspecialchars($name),
"seeders" => intval(htmlspecialchars($seeders)),
"leechers" => intval(htmlspecialchars($leechers)),
"seeders" => (int) htmlspecialchars($seeders),
"leechers" => (int) htmlspecialchars($leechers),
"magnet" => htmlspecialchars($magnet),
"source" => "thepiratebay.org"
)