1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-15 23:17:19 +00:00

Locating issue

This commit is contained in:
Unknown
2014-03-24 09:01:25 -04:00
parent 59bbddb318
commit ae92f92dee
3 changed files with 4 additions and 2 deletions

View File

@@ -387,7 +387,7 @@ func UpdateRepository(repo *Repository) error {
repo.Website = repo.Website[:255]
}
_, err := orm.Id(repo.Id).UseBool().Cols("description", "website", "updated").Update(repo)
_, err := orm.Id(repo.Id).AllCols().Update(repo)
return err
}