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
}