Unassigned tasks

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
valli
Posts: 11
Joined: 31 Jan 2011, 12:04

Unassigned tasks

Post by valli »

Hi,
I am using mantis bugtracker 1.2.4. In "My View" page we can see all the unassigned tasks.All the users are able to see this tab.But I want only particular user to see this tab for remaining users this should not be visible.Can u tell me the solution asap.

Thanks in advance
atrol
Site Admin
Posts: 8536
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Unassigned tasks

Post by atrol »

You can configure that no user gets the display of unassigned tasks.
If you want it for just some users you have to change the source code of MantisBT.

Are you aware that users will still be able to find unassigned issues by using the "View Issues" page?
Please use Search before posting and read the Manual
valli
Posts: 11
Joined: 31 Jan 2011, 12:04

Re: Unassigned tasks

Post by valli »

Hi,
Thanks for ur quick reply.can u suggest me where i have to change the source code.
atrol
Site Admin
Posts: 8536
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Unassigned tasks

Post by atrol »

You have to add some lines to file file my_view_page.php around line 101
Something like

Code: Select all

else if ( $t_box_title == 'unassigned' && ( <your_condition_to_hide_display> ) ) {
			$t_number_of_boxes = $t_number_of_boxes - 1;
		}
Be aware that whenever you update your installation to a newer version of MantisBT you have to change again.
Please use Search before posting and read the Manual
Post Reply