mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
sorted more dropdowns alphabetically and fixed issue in edit trip where it would list all clients from all companies
This commit is contained in:
@@ -85,7 +85,7 @@
|
||||
<option value="">- Client -</option>
|
||||
<?php
|
||||
|
||||
$sql = mysqli_query($mysqli,"SELECT * FROM clients WHERE company_id = $session_company_id");
|
||||
$sql = mysqli_query($mysqli,"SELECT * FROM clients WHERE company_id = $session_company_id ORDER BY client_name ASC");
|
||||
while($row = mysqli_fetch_array($sql)){
|
||||
$client_id = $row['client_id'];
|
||||
$client_name = $row['client_name'];
|
||||
|
||||
Reference in New Issue
Block a user