I am just getting home from a trip so it will take me a while to get back into a routein that I can fight with this... I have added Delphiprogrammi as a Co-Author!
EDIT:
OK, I am not sure this is all of the edits but it should be... this will add a small table to the main issue status listing so that the colors for each status will be displayed.
All of these edits are in Admin/project.php
FIND:
PHP Code:
print_cells_row(array(
'<span class="normal">' . $vbphrase['status'] . '</span>',
'<span class="normal">' . $vbphrase['display_order'] . '</span>',
'<b>' . construct_link_code($vbphrase['add_status'], 'project.php?do=statusadd&type=' . $type['issuetypeid']) . '</b>'
), true);
REPLACE WITH:
PHP Code:
print_cells_row(array(
'<span class="normal">' . $vbphrase['status'] . '</span>',
'<span class="normal">' . $vbphrase['display_order'] . '</span>',
'<span class="normal">' . $vbphrase['background_color'] . '</span>',
'<b>' . construct_link_code($vbphrase['add_status'], 'project.php?do=statusadd&type=' . $type['issuetypeid']) . '</b>'
), true);
FIND:
PHP Code:
print_cells_row(array(
$vbphrase["issuestatus$status[issuestatusid]"],
"<input type=\"text\" class=\"bginput\" name=\"order[$status[issuestatusid]]\" value=\"$status[displayorder]\" tabindex=\"1\" size=\"3\" />",
"<div align=\"$stylevar[right]\" class=\"smallfont\">" .
construct_link_code($vbphrase['edit'], 'project.php?do=statusedit&issuestatusid=' . $status['issuestatusid']) .
construct_link_code($vbphrase['delete'], 'project.php?do=statusdelete&issuestatusid=' . $status['issuestatusid']) .
'</div>'
));
REPLACE WITH:
PHP Code:
print_cells_row(array(
$vbphrase["issuestatus$status[issuestatusid]"],
"<input type=\"text\" class=\"bginput\" name=\"order[$status[issuestatusid]]\" value=\"$status[displayorder]\" tabindex=\"1\" size=\"3\" />",
"<table height=\"24\" width=\"85\" cellpadding=\"0\" cellspacing=\"0\" border=\"1\">
<tr><td style=\"background-color: $status[background]\"><font color = \"black\"> $status[background] </font></td>
</tr></table>",
"<div align=\"$stylevar[right]\" class=\"smallfont\">" .
construct_link_code($vbphrase['edit'], 'project.php?do=statusedit&issuestatusid=' . $status['issuestatusid']) .
construct_link_code($vbphrase['delete'], 'project.php?do=statusdelete&issuestatusid=' . $status['issuestatusid']) .
'</div>'
));
FIND:
PHP Code:
print_submit_row($vbphrase['save_display_order'], '', 3);
REPLACE WITH:
PHP Code:
print_submit_row($vbphrase['save_display_order'], '', 4);