Skip to content

Commit

Permalink
Cosmetic changes to php/karnaf/list.php and php/karnaf/view.php.
Browse files Browse the repository at this point in the history
  • Loading branch information
kobishmueli committed Apr 4, 2015
1 parent d31299f commit d4b6a71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion php/karnaf/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
if($priority > 19) $status_style = "Karnaf_P_High"; // Red
if($priority > 29) $status_style = "Karnaf_P_Critical";
?>
<tr class="<?=$status_style?>" style="cursor:pointer" onmouseover="this.style.backgroundColor='LightGreen'; this.style.color='Black'" onmouseout="this.style.backgroundColor=''; this.style.color=''" onclick=javascript:window.parent.main.location.href="edit.php?id=<?=$result['id']?>">
<tr class="<?=$status_style?>" style="cursor:pointer" onmouseover="this.style.backgroundColor='LightGreen'; this.style.color='Black'" onmouseout="this.style.backgroundColor=''; this.style.color=''" onclick=javascript:window.location.href="edit.php?id=<?=$result['id']?>">
<td><span title="<?=str_replace("\"","''",$result['description'])?>" style="cursor:pointer"><?=$result['id']?></span></td>
<td>
<?
Expand Down
2 changes: 1 addition & 1 deletion php/karnaf/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ function do_upload($tid) {
if($priority > 29) $status_style = "Karnaf_P_Critical";
if($result2['status'] == 0) $status_style = "Karnaf_P_Closed";
?>
<tr class="<?=$status_style?>" style="cursor:pointer" onmouseover="this.style.backgroundColor='LightGreen'; this.style.color='Black'" onmouseout="this.style.backgroundColor=''; this.style.color=''" onclick=javascript:window.parent.main.location.href="edit.php?id=<?=$result2['id']?>">
<tr class="<?=$status_style?>" style="cursor:pointer" onmouseover="this.style.backgroundColor='LightGreen'; this.style.color='Black'" onmouseout="this.style.backgroundColor=''; this.style.color=''" onclick=javascript:window.location.href="edit.php?id=<?=$result2['id']?>">
<td><?=$result2['id']?></td>
<td><?=$result2['unick']?></td>
<td><?=$result2['uemail']?></td>
Expand Down

0 comments on commit d4b6a71

Please sign in to comment.