Skip to content

Commit

Permalink
FIX Filter on project on ticket list
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Oct 1, 2019
1 parent b08df75 commit 800da4f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions htdocs/ticket/list.php
Expand Up @@ -131,6 +131,13 @@
// Store current page url
$url_page_current = dol_buildpath('/ticket/list.php', 1);

if ($project_ref)
{
$tmpproject = new Project($db);
$tmpproject->fetch(0, $project_ref);
$projectid = $tmpproject->id;
$search_fk_project = $projectid;
}


/*
Expand Down

0 comments on commit 800da4f

Please sign in to comment.