diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-15 05:30:59 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-15 05:30:59 -0400 |
commit | 4b8e888437a9972459e73496d811ea30f105f06c (patch) | |
tree | c319bb015f1645b03979c74d6819fa0240f1275c /modules | |
parent | 06deed820d9f48ecf972c8716b17ad58b91ab9b9 (diff) | |
download | gitea-4b8e888437a9972459e73496d811ea30f105f06c.tar.gz gitea-4b8e888437a9972459e73496d811ea30f105f06c.zip |
Finish feeds
Diffstat (limited to 'modules')
-rw-r--r-- | modules/auth/user.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/auth/user.go b/modules/auth/user.go index d950b25002..e5f22a0915 100644 --- a/modules/auth/user.go +++ b/modules/auth/user.go @@ -97,7 +97,7 @@ func SignOutRequire() martini.Handler { type FeedsForm struct { UserId int64 `form:"userid" binding:"Required"` - Offset int64 `form:"offset"` + Page int64 `form:"p"` } type UpdateProfileForm struct { |