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:
14
revenues.php
14
revenues.php
@@ -139,22 +139,22 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()"));
|
||||
|
||||
while($row = mysqli_fetch_array($sql)){
|
||||
$revenue_id = $row['revenue_id'];
|
||||
$revenue_description = $row['revenue_description'];
|
||||
$revenue_reference = $row['revenue_reference'];
|
||||
$revenue_description = htmlentities($row['revenue_description']);
|
||||
$revenue_reference = htmlentities($row['revenue_reference']);
|
||||
if(empty($revenue_reference)){
|
||||
$revenue_reference_display = "-";
|
||||
}else{
|
||||
$revenue_reference_display = $revenue_reference;
|
||||
}
|
||||
$revenue_date = $row['revenue_date'];
|
||||
$revenue_payment_method = $row['revenue_payment_method'];
|
||||
$revenue_amount = $row['revenue_amount'];
|
||||
$revenue_currency_code = $row['revenue_currency_code'];
|
||||
$revenue_payment_method = htmlentities($row['revenue_payment_method']);
|
||||
$revenue_amount = htmlentities($row['revenue_amount']);
|
||||
$revenue_currency_code = htmlentities($row['revenue_currency_code']);
|
||||
$revenue_created_at = $row['revenue_created_at'];
|
||||
$account_id = $row['account_id'];
|
||||
$account_name = $row['account_name'];
|
||||
$account_name = htmlentities($row['account_name']);
|
||||
$category_id = $row['category_id'];
|
||||
$category_name = $row['category_name'];
|
||||
$category_name = htmlentities($row['category_name']);
|
||||
|
||||
?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user