mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Format output for the proper code syntax, this should fix many various issues with output formatting and page breakage
This commit is contained in:
@@ -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']);
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user