Browse Source

MMI Fix Options to use select multiple form to search tasks and projects by user

Mathieu Moulin 9 months ago
parent
commit
1b75d1a15b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      htdocs/projet/tasks/list.php

+ 2 - 2
htdocs/projet/tasks/list.php

@@ -702,7 +702,7 @@ if ((is_numeric($search_opp_status) && $search_opp_status >= 0) || in_array($sea
 }
 if (!empty($search_project_user)) {
 	if (is_array($search_project_user)) {
-		foreach($$search_project_user as $uid)
+		foreach($search_project_user as $uid)
 			$param .= '&search_project_user[]='.urlencode($uid);
 	}
 	elseif ($search_project_user > 0) {
@@ -711,7 +711,7 @@ if (!empty($search_project_user)) {
 }
 if (!empty($search_task_user)) {
 	if (is_array($search_task_user)) {
-		foreach($$search_task_user as $uid)
+		foreach($search_task_user as $uid)
 			$param .= '&search_task_user[]='.urlencode($uid);
 	}
 	elseif ($search_task_user > 0) {