mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Tidy codestyle - spaces between parenthesis and curly braces
This commit is contained in:
@@ -23,7 +23,7 @@ $sql_clients = mysqli_query($mysqli,"SELECT * FROM clients WHERE company_id = $s
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
while($row = mysqli_fetch_array($sql_clients)){
|
||||
while ($row = mysqli_fetch_array($sql_clients)) {
|
||||
$client_id = $row['client_id'];
|
||||
$client_name = htmlentities($row['client_name']);
|
||||
|
||||
@@ -42,7 +42,7 @@ $sql_clients = mysqli_query($mysqli,"SELECT * FROM clients WHERE company_id = $s
|
||||
$recurring_monthly = $recurring_monthly_total + $recurring_yearly_total;
|
||||
$recurring_total = $recurring_total + $recurring_monthly;
|
||||
|
||||
if($recurring_monthly > 0){
|
||||
if ($recurring_monthly > 0) {
|
||||
|
||||
?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user