Browse Source

#640 Resolved requests shown in both lists (opened and resolved)

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@2508 a333f486-631f-4898-b8df-5754b55c2be0
romainq 12 years ago
parent
commit
70fbacbcdb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      portal/index.php

+ 1 - 1
portal/index.php

@@ -402,7 +402,7 @@ function ListOpenRequests(WebPage $oP)
 {
 	$oUserOrg = GetUserOrg();
 
-	$sOQL = 'SELECT UserRequest WHERE org_id = :org_id AND status NOT IN ("closed")';
+	$sOQL = 'SELECT UserRequest WHERE org_id = :org_id AND status NOT IN ("closed", "resolved")';
 	$oSearch = DBObjectSearch::FromOQL($sOQL);
 	$iUser = UserRights::GetContactId();
 	if ($iUser > 0)