diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-01-20 19:13:28 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-01-20 19:13:28 -0800 |
commit | b41ed1b96f5078344ab5b9e3b3586dd3963755d4 (patch) | |
tree | fd657507abc89d80ef20a19a5f4d9881458ae7c8 | |
parent | 9bead643624d3052e331b3f0baf379d62846b96a (diff) |
removing fmt prints. fix is for #38
-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 { |