mirror of
https://github.com/itflow-org/itflow
synced 2026-03-04 12:54:51 +00:00
Added Tag Type to allow expansion of tagging support for other entities in the future
This commit is contained in:
@@ -259,7 +259,7 @@
|
||||
|
||||
<?php
|
||||
|
||||
$sql_tags_select = mysqli_query($mysqli,"SELECT * FROM tags WHERE company_id = $session_company_id ORDER BY tag_name ASC");
|
||||
$sql_tags_select = mysqli_query($mysqli,"SELECT * FROM tags WHERE tag_type = 1 AND company_id = $session_company_id ORDER BY tag_name ASC");
|
||||
|
||||
while($row = mysqli_fetch_array($sql_tags_select)){
|
||||
$tag_id_select = $row['tag_id'];
|
||||
|
||||
Reference in New Issue
Block a user