|
@@ -525,12 +525,6 @@ func (this *ReportController) Add() {
|
|
|
}
|
|
|
var contentSub string
|
|
|
if req.Content != "" {
|
|
|
- e := utils.ContentXssCheck(req.Content)
|
|
|
- if e != nil {
|
|
|
- br.Msg = "存在非法标签"
|
|
|
- br.ErrMsg = "存在非法标签, Err: " + e.Error()
|
|
|
- return
|
|
|
- }
|
|
|
req.Content = utils.ContentXssFilter(req.Content)
|
|
|
content, e := services.FilterReportContentBr(req.Content)
|
|
|
if e != nil {
|
|
@@ -666,12 +660,6 @@ func (this *ReportController) Edit() {
|
|
|
}
|
|
|
var contentSub string
|
|
|
if req.Content != "" {
|
|
|
- e := utils.ContentXssCheck(req.Content)
|
|
|
- if e != nil {
|
|
|
- br.Msg = "存在非法标签"
|
|
|
- br.ErrMsg = "存在非法标签, Err: " + e.Error()
|
|
|
- return
|
|
|
- }
|
|
|
req.Content = utils.ContentXssFilter(req.Content)
|
|
|
content, e := services.FilterReportContentBr(req.Content)
|
|
|
if e != nil {
|
|
@@ -1221,12 +1209,6 @@ func (this *ReportController) SaveReportContent() {
|
|
|
content = this.GetString("Content")
|
|
|
}
|
|
|
if content != "" {
|
|
|
- e := utils.ContentXssCheck(req.Content)
|
|
|
- if e != nil {
|
|
|
- br.Msg = "存在非法标签"
|
|
|
- br.ErrMsg = "存在非法标签, Err: " + e.Error()
|
|
|
- return
|
|
|
- }
|
|
|
req.Content = utils.ContentXssFilter(req.Content)
|
|
|
contentClean, e := services.FilterReportContentBr(req.Content)
|
|
|
if e != nil {
|
|
@@ -2462,12 +2444,6 @@ func (this *ReportController) EditDayWeekChapter() {
|
|
|
// 更新章节及指标
|
|
|
contentSub := ""
|
|
|
if req.Content != "" {
|
|
|
- e := utils.ContentXssCheck(req.Content)
|
|
|
- if e != nil {
|
|
|
- br.Msg = "存在非法标签"
|
|
|
- br.ErrMsg = "存在非法标签, Err: " + e.Error()
|
|
|
- return
|
|
|
- }
|
|
|
req.Content = utils.ContentXssFilter(req.Content)
|
|
|
contentClean, e := services.FilterReportContentBr(req.Content)
|
|
|
if e != nil {
|
|
@@ -2940,12 +2916,6 @@ func (this *ReportController) PublishDayWeekReportChapter() {
|
|
|
// 更新章节信息
|
|
|
contentSub := ""
|
|
|
if req.Content != "" {
|
|
|
- e := utils.ContentXssCheck(req.Content)
|
|
|
- if e != nil {
|
|
|
- br.Msg = "存在非法标签"
|
|
|
- br.ErrMsg = "存在非法标签, Err: " + e.Error()
|
|
|
- return
|
|
|
- }
|
|
|
req.Content = utils.ContentXssFilter(req.Content)
|
|
|
contentClean, e := services.FilterReportContentBr(req.Content)
|
|
|
if e != nil {
|