#1526 URL escape for username and password

This commit is contained in:
Unknwon 2015-08-29 12:08:37 +08:00
parent 5ddcd8420b
commit 63799b3c18
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ package models
import (
"database/sql"
"fmt"
"net/url"
"os"
"path"
"strings"
@ -133,7 +134,7 @@ func getEngine() (*xorm.Engine, error) {
port = fields[1]
}
cnnstr = fmt.Sprintf("postgres://%s:%s@%s:%s/%s?sslmode=%s",
DbCfg.User, DbCfg.Passwd, host, port, DbCfg.Name, DbCfg.SSLMode)
url.QueryEscape(DbCfg.User), url.QueryEscape(DbCfg.Passwd), host, port, DbCfg.Name, DbCfg.SSLMode)
case "sqlite3":
if !EnableSQLite3 {
return nil, fmt.Errorf("Unknown database type: %s", DbCfg.Type)