summaryrefslogtreecommitdiffstats
path: root/models/wiki.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/wiki.go')
-rw-r--r--models/wiki.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/models/wiki.go b/models/wiki.go
index 9c6292cbaa..e3eb1f6807 100644
--- a/models/wiki.go
+++ b/models/wiki.go
@@ -12,7 +12,6 @@ import (
"path/filepath"
"strings"
"sync"
-
"net/url"
"github.com/Unknwon/com"
@@ -71,8 +70,9 @@ func ToWikiPageURL(name string) string {
}
// ToWikiPageName formats a URL back to corresponding wiki page name.
-func ToWikiPageName(name string) string {
- return url.QueryUnescape(strings.Replace(name, "-", " ", -1))
+func ToWikiPageName(urlString string) string {
+ name, _ := url.QueryUnescape(strings.Replace(urlString, "-", " ", -1))
+ return name
}
// WikiCloneLink returns clone URLs of repository wiki.