Category Passive Mode?
Posted: Fri Mar 16, 2012 7:30 pm
Opened with a direct link to the ticket category, the category field can be passive?
For example:
index.php?a=add&catid=1
For example:
index.php?a=add&catid=1
Code: Select all
if (hesk_dbNumRows($res) == 1)
{
$row = hesk_dbFetchAssoc($res);
echo '<input type="hidden" name="category" value="'.$row['id'].'" />';
}
Code: Select all
elseif (! empty($_GET['catid']) )
{
$cid = intval($_GET['catid']) or $cid = 1;
echo '<input type="hidden" name="category" value="'.$cid.'" />';
}