Compare commits

..

No commits in common. "5eb09842e83a73f4075340331741c3e36ffca67a" and "b4751de6323ad7a9a1e7ed8640d9589f4e648859" have entirely different histories.

2 changed files with 21 additions and 20 deletions

View file

@ -51,12 +51,12 @@ import (
_ "code.gitea.io/gitea/modules/session" // to registers all internal adapters
"code.forgejo.org/go-chi/binding"
"code.forgejo.org/go-chi/captcha"
chi_middleware "github.com/go-chi/chi/v5/middleware"
"github.com/go-chi/cors"
"github.com/klauspost/compress/gzhttp"
"github.com/prometheus/client_golang/prometheus"
"code.forgejo.org/go-chi/binding"
)
var GzipMinSize = gzhttp.DefaultMinSize
@ -1675,6 +1675,7 @@ func registerRoutes(m *web.Route) {
func BindUpload(f forms.UploadRepoFileForm) http.HandlerFunc {
return func(resp http.ResponseWriter, req *http.Request) {
theObj := new(forms.UploadRepoFileForm) // create a new form obj for every request but not use obj directly
data := middleware.GetContextData(req.Context())
binding.Bind(req, theObj)

View file

@ -6,11 +6,11 @@ package files
import (
"context"
"fmt"
"html"
"os"
"path"
"regexp"
"strings"
"regexp"
"html"
git_model "code.gitea.io/gitea/models/git"
repo_model "code.gitea.io/gitea/models/repo"