Skip to content

Commit

Permalink
Added html escaping to php/karnaf/mng_viewlogs.php.
Browse files Browse the repository at this point in the history
-Kobi.
  • Loading branch information
kobishmueli committed Oct 20, 2016
1 parent 109412d commit 5a952a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Karnaf v5.0.17
- Added priority to statuses in order to control the status list order.
- Changed php/karnaf/new.php to automatically get the user's full name.
- Made sure the cc variable is set on php/karnaf-scripts/fetch-emails.php.
- Added html escaping to php/karnaf/mng_viewlogs.php.

Karnaf v5.0.16
- Let opers choose the assigned group for new tickets they open.
Expand Down
2 changes: 1 addition & 1 deletion php/karnaf/mng_viewlogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<td class=<?=$class?>><?=$sdate?></td>
<td class=<?=$class?>><?=$result['ip']?></td>
<td class=<?=$class?>><?=$result['user']?></td>
<td class=<?=$class?>><b><?=strtoupper($result['logtype'])?></b> -> <?=$result['action']?></td>
<td class=<?=$class?>><b><?=strtoupper($result['logtype'])?></b> -> <?=fix_html($result['action'])?></td>
</tr>
<?
}
Expand Down

0 comments on commit 5a952a1

Please sign in to comment.