index.php
find
<th width="<?php echo FRK_STATUS_LEVELS * 2; ?>%" onclick="freak_sort('statusKey')" colspan="<?php echo FRK_STATUS_LEVELS ?>" class="sortable"><?php echo (FRK_STATUS_LEVELS == 1)?'X':$langForm['status']; ?></th>
change to
<th width="80" onclick="freak_sort('statusKey')" class="sortable"><?php echo (FRK_STATUS_LEVELS == 1)?'X':$langForm['status']; ?></th>
find
<?php
$s = $objItem->itemStatus->statusKey;
for ($i = 0; $i < FRK_STATUS_LEVELS; $i++) {
$j = ($i < $s)?(FRK_STATUS_LEVELS - $i):0;
?>
<td id="est<?php echo ($i+1).$objItem->id; ?>" class="sts<?php echo $j; ?>"<?php
if ($objUser->checkLevel(14) || $objItem->checkRights($objUser->id,8,true)) {
echo ' onclick="freak_sts('.$objItem->id.','.($i+1).')" style="cursor:pointer"';
}
?>> </td>
<?php
}
?>
change to
<!-- status bar update -->
<td>
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<?php
$s = $objItem->itemStatus->statusKey;
for ($i = 0; $i < FRK_STATUS_LEVELS; $i++) {
$j = ($i < $s)?(FRK_STATUS_LEVELS - $i):0;
?>
<td width="10" onmouseover="this.style.cursor='pointer'" id="est<?php echo ($i+1).$objItem->id; ?>" class="sts<?php echo $j; ?>"<?php if ($objUser->checkLevel(14) || $objItem->checkRights($objUser->id,8,true)) { echo ' onclick="freak_sts('.$objItem->id.','.($i+1).')" style="cursor:pointer"'; } ?>> </td>
<?php } ?>
<td style="border:0"></td>
<td id="status_perc_<?php echo $objItem->id; ?>" style="border:0; font-size:8px; color:#000" align="right"> <?php echo ($s*20)."%"; ?></td>
</tr>
<tr><td style="border:0; height:2px"></td></tr>
<tr>
<td colspan="7" style="border:0"><img id="status_bar_<?php echo $objItem->id; ?>" src="skins/status.jpg" height="5" width="<?php echo ($s*16); ?>" /></td>
</tr>
</table>
</td>
<!-- status bar update -->