I have installed a new Mantis, version 1.1.7 but I have problems with the View Issues because can edit the issues he has created previously. I want that into the View Page appears the edit link (the pencil) to update the issues. This edit link just appears with the Developers and Admin roles, but it does not appear with the reporter role.
I have configured the mantis like:
config_inc.php
Code: Select all
...
$g_view_issues_page_columns = array('selection','edit','priority','id','sponsorship_total','bugnotes_count','attachment','category','severity','status','last_updated','summary','reporter_id');
...
I have also tried to do the following with Admin Role:
* Click “Manage” from Main Menu.
*Click “Manage Configuration” from “Manage” sub-menu.
*“Configuration Report” will be selected by default.
*Scroll to the form at the bottom of the page.
*Select the user to which the change applies. In my case I have selected a REPORTER user.
*Select the project to which the change applies.
*Type “view_issues_page_columns” in the “configuration option” field.
*Leave “Type” field set to “Default”.
*Set the “Value” field to an array of the column names to be shown. Here I have proved with:
Code: Select all
array(selection,edit,priority,id,sponsorship_total,bugnotes_count,attachment,category,severity,status,last_updated,summary,reporter_id)
Code: Select all
array('selection','edit','priority','id','sponsorship_total','bugnotes_count','attachment','category','severity','status','last_updated','summary','reporter_id');
can you help me??? thanks

