summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-07-21 14:15:04 +0800
committerUnknwon <u@gogs.io>2016-07-21 14:15:04 +0800
commit57af7432fc07f630e435228a306a9deeb3fefa1e (patch)
tree6ba47956027d61989c34c3da427f75d72c58168a
parent1c7dcdd6b948b9c177b5ed4e036e612508ee9832 (diff)
downloadgitea-57af7432fc07f630e435228a306a9deeb3fefa1e.tar.gz
gitea-57af7432fc07f630e435228a306a9deeb3fefa1e.zip
#3295 fix wrong logic judgement
-rw-r--r--README.md2
-rw-r--r--gogs.go2
-rw-r--r--models/login.go2
-rw-r--r--templates/.VERSION2
4 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 26b515d788..d2476577b4 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)
-##### Current tip version: 0.9.46 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions)
+##### Current tip version: 0.9.47 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions)
| Web | UI | Preview |
|:-------------:|:-------:|:-------:|
diff --git a/gogs.go b/gogs.go
index efb9c915e6..a6748371e8 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
-const APP_VER = "0.9.46.0717"
+const APP_VER = "0.9.47.0721"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/models/login.go b/models/login.go
index 84f17d18e5..dd90c5d86e 100644
--- a/models/login.go
+++ b/models/login.go
@@ -296,7 +296,7 @@ func LoginUserLDAPSource(u *User, loginName, passwd string, source *LoginSource,
username = loginName
}
// Validate username make sure it satisfies requirement.
- if !binding.AlphaDashDotPattern.MatchString(username) {
+ if binding.AlphaDashDotPattern.MatchString(username) {
return nil, fmt.Errorf("Invalid pattern for attribute 'username' [%s]: must be valid alpha or numeric or dash(-_) or dot characters", username)
}
diff --git a/templates/.VERSION b/templates/.VERSION
index c0497e65c5..f100703355 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.9.46.0717 \ No newline at end of file
+0.9.47.0721 \ No newline at end of file