fix compatibility with php8

This commit is contained in:
xiaomlove
2020-12-29 03:02:34 +08:00
parent 32d47b66c9
commit fe7489ef51
33 changed files with 249 additions and 212 deletions

View File

@@ -10,7 +10,7 @@ header("Cache-Control: no-cache, must-revalidate" );
header("Pragma: no-cache" );
header("Content-Type: text/xml; charset=utf-8");
$id = 0 + $_GET['id'];
$id = $_GET['id'] ?? 0;
if(isset($CURUSER))
{
$s = "<table class=\"main\" border=\"1\" cellspacing=0 cellpadding=\"5\">\n";