templates/user/auth/signin.tmpl: hide sign up prompt when registration is disabled #884

This commit is contained in:
Unknwon 2015-02-12 12:38:44 -05:00
parent 0af74b36ad
commit 67a9416ae5
4 changed files with 8 additions and 6 deletions

View file

@ -15,7 +15,7 @@ import (
"github.com/go-xorm/xorm"
_ "github.com/lib/pq"
"github.com/gogits/gogs/models/migrations"
// "github.com/gogits/gogs/models/migrations"
"github.com/gogits/gogs/modules/setting"
)
@ -136,9 +136,9 @@ func NewEngine() (err error) {
return err
}
if err = migrations.Migrate(x); err != nil {
return err
}
// if err = migrations.Migrate(x); err != nil {
// return err
// }
if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
return fmt.Errorf("sync database struct error: %v\n", err)