| Index: milo/appengine/common/funcs.go
|
| diff --git a/milo/appengine/common/funcs.go b/milo/appengine/common/funcs.go
|
| index 041ce8f9d8256473415616f5a8fc5b55eec41cb1..aedbfe62f6666b6586ed9de62dd2f96e175d2ad5 100644
|
| --- a/milo/appengine/common/funcs.go
|
| +++ b/milo/appengine/common/funcs.go
|
| @@ -134,8 +134,8 @@ func humanDuration(d time.Duration) string {
|
| return "0"
|
| }
|
|
|
| -// obfuscateEmail converts an email@address.com into email<junk>@address.com
|
| -// if it is an email.
|
| +// obfuscateEmail converts a string containing email adddress email@address.com
|
| +// into email<junk>@address.com.
|
| func obfuscateEmail(email string) template.HTML {
|
| email = template.HTMLEscapeString(email)
|
| return template.HTML(strings.Replace(
|
|
|