diff options
-rw-r--r-- | system/admin/handlers.go | 1 | ||||
-rw-r--r-- | system/api/external.go | 1 | ||||
-rw-r--r-- | system/db/config.go | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go index 89eda6a..3195239 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -1588,7 +1588,6 @@ func editHandler(res http.ResponseWriter, req *http.Request) { for i := 0; i < len(ov); i++ { position := fmt.Sprintf("%d", i) fieldValue := ov[position] - fmt.Println(position, fieldValue) if req.PostForm.Get(f) == "" { for i, fv := range fieldValue { diff --git a/system/api/external.go b/system/api/external.go index 752f14d..5a74107 100644 --- a/system/api/external.go +++ b/system/api/external.go @@ -106,7 +106,6 @@ func externalContentHandler(res http.ResponseWriter, req *http.Request) { for i := 0; i < len(ov); i++ { position := fmt.Sprintf("%d", i) fieldValue := ov[position] - fmt.Println(position, fieldValue) if req.PostForm.Get(f) == "" { for i, fv := range fieldValue { diff --git a/system/db/config.go b/system/db/config.go index 72dcb5f..2706e97 100644 --- a/system/db/config.go +++ b/system/db/config.go @@ -55,7 +55,6 @@ func SetConfig(data url.Values) error { for i := 0; i < len(ov); i++ { position := fmt.Sprintf("%d", i) fieldValue := ov[position] - fmt.Println(position, fieldValue) if data.Get(f) == "" { for i, fv := range fieldValue { |