aboutsummaryrefslogtreecommitdiff
path: root/OutboxPost.go
diff options
context:
space:
mode:
Diffstat (limited to 'OutboxPost.go')
-rw-r--r--OutboxPost.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/OutboxPost.go b/OutboxPost.go
index 235611e..b51e7cc 100644
--- a/OutboxPost.go
+++ b/OutboxPost.go
@@ -355,7 +355,8 @@ func ObjectFromForm(r *http.Request, db *sql.DB, obj ObjectBase) ObjectBase {
obj.Preview = CreatePreviewObject(obj.Attachment[0])
}
- obj.AttributedTo = EscapeString(r.FormValue("name"))
+ obj.AttributedTo = CreateNameTripCode(r.FormValue("name"))
+ obj.AttributedTo = EscapeString(obj.AttributedTo)
obj.Name = EscapeString(r.FormValue("subject"))
obj.Content = EscapeString(r.FormValue("comment"))