|
From: Ulf E. <ulf...@us...> - 2005-10-02 20:52:19
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30421/templates/default Modified Files: bughistory.html Log Message: RFE #561655 - Change reporter Index: bughistory.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/bughistory.html,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- bughistory.html 22 Sep 2005 20:51:50 -0000 1.8 +++ bughistory.html 2 Oct 2005 20:52:09 -0000 1.9 @@ -11,12 +11,12 @@ <tr<?php if ($i % 2) echo ' class="alt" bgcolor="#dddddd"' ?>> <td><?php echo maskemail($history[$i]['login']); ?></td> <td><?php echo $history[$i]['changed_field']; ?></td> - <td> <?php if ($history[$i]['changed_field'] == translate("Assigned To")) { + <td> <?php if ($history[$i]['changed_field'] == translate("Assigned To") or $history[$i]['changed_field'] == translate("Reporter")) { echo maskemail($history[$i]['old_value']); } else { echo $history[$i]['old_value']; } ?></td> - <td> <?php if ($history[$i]['changed_field'] == translate("Assigned To")) { + <td> <?php if ($history[$i]['changed_field'] == translate("Assigned To") or $history[$i]['changed_field'] == translate("Reporter")) { echo maskemail($history[$i]['new_value']); } else { echo $history[$i]['new_value']; |