Browse Source

#1073 #1162 issue ID constraint failed

Unknwon 10 years ago
parent
commit
9fb2d49b93
6 changed files with 7 additions and 5 deletions
  1. 1 1
      .gopmfile
  2. 1 1
      gogs.go
  3. 3 1
      models/issue.go
  4. 0 0
      public/css/gogs.min.css
  5. 1 1
      public/less/_home.less
  6. 1 1
      templates/.VERSION

+ 1 - 1
.gopmfile

@@ -16,7 +16,7 @@ github.com/gogits/go-gogs-client = commit:92e76d616a
 github.com/lib/pq = commit:30ed2200d7
 github.com/macaron-contrib/binding = commit:548a793679
 github.com/macaron-contrib/cache = commit:928d5c35cd
-github.com/macaron-contrib/captcha = commit:fbb8b1ebb5
+github.com/macaron-contrib/captcha = 
 github.com/macaron-contrib/csrf = commit:98ddf5a710
 github.com/macaron-contrib/i18n = commit:da2b19e90b
 github.com/macaron-contrib/oauth2 = commit:8f394c3629

+ 1 - 1
gogs.go

@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.6.1.0325 Beta"
+const APP_VER = "0.6.1.0327 Beta"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())

+ 3 - 1
models/issue.go

@@ -282,7 +282,7 @@ type IssueUser struct {
 }
 
 // NewIssueUserPairs adds new issue-user pairs for new issue of repository.
-func NewIssueUserPairs(repo *Repository, issueID, orgID, posterID, assigneeID int64) (err error) {
+func NewIssueUserPairs(repo *Repository, issueID, orgID, posterID, assigneeID int64) error {
 	users, err := repo.GetCollaborators()
 	if err != nil {
 		return err
@@ -295,6 +295,7 @@ func NewIssueUserPairs(repo *Repository, issueID, orgID, posterID, assigneeID in
 
 	isNeedAddPoster := true
 	for _, u := range users {
+		iu.Id = 0
 		iu.Uid = u.Id
 		iu.IsPoster = iu.Uid == posterID
 		if isNeedAddPoster && iu.IsPoster {
@@ -306,6 +307,7 @@ func NewIssueUserPairs(repo *Repository, issueID, orgID, posterID, assigneeID in
 		}
 	}
 	if isNeedAddPoster {
+		iu.Id = 0
 		iu.Uid = posterID
 		iu.IsPoster = true
 		iu.IsAssigned = iu.Uid == assigneeID

File diff suppressed because it is too large
+ 0 - 0
public/css/gogs.min.css


+ 1 - 1
public/less/_home.less

@@ -1,5 +1,5 @@
 .home {
-	padding-bottom: @footer-margin * 2;
+	padding-bottom: @footer-margin * 3;
 	.logo {
 		max-width: 250px;
 	}

+ 1 - 1
templates/.VERSION

@@ -1 +1 @@
-0.6.1.0325 Beta
+0.6.1.0327 Beta

Some files were not shown because too many files changed in this diff