mirror of https://github.com/itflow-org/itflow
Merge pull request #1143 from itflow-org/bug-tickets-projects
Bugfix - tickets <=> projects
This commit is contained in:
commit
87f0cb295f
|
|
@ -4,6 +4,7 @@ All notable changes to ITFlow will be documented in this file.
|
||||||
|
|
||||||
## 25.1
|
## 25.1
|
||||||
- Moved cron/cli scripts to scripts subfolder - Old scripts remain in the root for now, but please update your cron configurations!
|
- Moved cron/cli scripts to scripts subfolder - Old scripts remain in the root for now, but please update your cron configurations!
|
||||||
|
- Bugfix: Ticket edit modal not showing multi-client/no-client projects
|
||||||
|
|
||||||
## 24.12
|
## 24.12
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -261,7 +261,7 @@
|
||||||
<option value="0">- None -</option>
|
<option value="0">- None -</option>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$sql_projects = mysqli_query($mysqli, "SELECT project_id, project_name FROM projects WHERE project_client_id = $client_id AND project_completed_at IS NULL AND project_archived_at IS NULL ORDER BY project_name ASC");
|
$sql_projects = mysqli_query($mysqli, "SELECT project_id, project_name FROM projects WHERE (project_client_id = $client_id OR project_client_id = 0) AND project_completed_at IS NULL AND project_archived_at IS NULL ORDER BY project_name ASC");
|
||||||
while ($row = mysqli_fetch_array($sql_projects)) {
|
while ($row = mysqli_fetch_array($sql_projects)) {
|
||||||
$project_id_select = intval($row['project_id']);
|
$project_id_select = intval($row['project_id']);
|
||||||
$project_name_select = nullable_htmlentities($row['project_name']); ?>
|
$project_name_select = nullable_htmlentities($row['project_name']); ?>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue