|
From: Benjamin C. <bc...@us...> - 2001-08-12 23:04:54
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv30322
Modified Files:
report.php
Log Message:
Added email hiding/masking
Index: report.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/report.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- report.php 2001/08/09 12:54:47 1.10
+++ report.php 2001/08/12 23:04:51 1.11
@@ -62,8 +62,7 @@
if ($row[$col] == '') {
$coldata = 'Unassigned';
} elseif ($col == 'Assigned To') {
- $coldata = sprintf("<a href='mailto:%s'>%s</a>",
- stripslashes($row[$col]), stripslashes($row[$col]));
+ $coldata = maskemail($row[$col]);
} else {
$coldata = stripslashes($row[$col]);
}
|