escaped string

This commit is contained in:
2025-11-26 13:24:52 +00:00
parent 330a22068f
commit 70eb05c10b

View File

@@ -94,7 +94,7 @@ pub fn (mut ctx Context) request_error(msg string) veb.Result {
pub fn (mut ctx Context) forbidden() veb.Result {
ctx.res.set_status(.forbidden)
return ctx.html(ctx.error_page(403, 'Forbidden', 'Oops! You aren't allowed around here.'))
return ctx.html(ctx.error_page(403, 'Forbidden', 'Oops! You aren\'t allowed around here.'))
}
pub fn (mut ctx Context) not_found() veb.Result {