mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 09:40:56 +00:00
Update: Redundant semicolon disableEscapeHTML
This commit is contained in:
parent
ad6c97ec1b
commit
b80b7b06fc
@ -17,8 +17,8 @@ package logs
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"time"
|
||||
"fmt"
|
||||
"time"
|
||||
)
|
||||
|
||||
const (
|
||||
@ -53,10 +53,9 @@ func (r *AccessLogRecord) json() ([]byte, error) {
|
||||
}
|
||||
|
||||
func disableEscapeHTML(i interface{}) {
|
||||
e, ok := i.(interface {
|
||||
if e, ok := i.(interface {
|
||||
SetEscapeHTML(bool)
|
||||
});
|
||||
if ok {
|
||||
}); ok {
|
||||
e.SetEscapeHTML(false)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user