1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-16 07:03:32 +00:00

fix the regexps bugs

This commit is contained in:
astaxie 2014-08-11 22:40:50 +08:00
parent b5a2347e1d
commit 8ed6d06572

View File

@ -106,7 +106,11 @@ func filterTreeWithPrefix(t *Tree, wildcards []string, reg string) {
filterCards = append(filterCards, v)
}
l.wildcards = filterCards
if l.regexps != nil {
l.regexps = regexp.MustCompile("^" + reg + strings.Trim(l.regexps.String(), "^$") + "$")
} else {
l.regexps = regexp.MustCompile("^" + reg + "$")
}
} else {
if l.regexps != nil {
filterCards := []string{}