Format output for the proper code syntax, this should fix many various issues with output formatting and page breakage

This commit is contained in:
johnnyq
2022-12-02 19:58:21 -05:00
parent 3067e6bd1e
commit b6e540825f
128 changed files with 1222 additions and 1227 deletions

View File

@@ -53,8 +53,8 @@
while($row = mysqli_fetch_array($sql)){
$api_key_id = $row['api_key_id'];
$api_key_name = $row['api_key_name'];
$api_key_secret = "************" . substr($row['api_key_secret'], -4);
$api_key_name = htmlentities($row['api_key_name']);
$api_key_secret = htmlentities("************" . substr($row['api_key_secret'], -4));
$api_key_created_at = $row['api_key_created_at'];
$api_key_expire = $row['api_key_expire'];
if($api_key_expire < date("Y-m-d H:i:s")){
@@ -65,7 +65,7 @@
$api_key_client = "<i>All Clients</i>";
}
else{
$api_key_client = $row['client_name'];
$api_key_client = htmlentities($row['client_name']);
}
?>