This commit is contained in:
Liang Ding 2014-11-01 17:54:36 +08:00
parent d8c30c549e
commit b2e98180a8
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ func initCustomizedConfs() {
// 1. /static/user/{username}/style.css
func UpdateCustomizedConf(username string) {
var u *User = nil
for _, user := range Wide.Users { // ... maybe a beauty of the trade-off between design and implementation
for _, user := range Wide.Users { // maybe it is a beauty of the trade-off of the another world between design and implementation
if user.Name == username {
u = user
}