Explorar o código

Replaces spaces in query with underscores to prevent redirects when possible.

Scott Steiner %!s(int64=13) %!d(string=hai) anos
pai
achega
638f5fafc5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      wiki.tcl

+ 1 - 1
wiki.tcl

@@ -33,7 +33,7 @@ proc wiki::fetch {term {url {}}} {
 	if {$url != ""} {
 		set token [http::geturl $url -timeout 10000]
 	} else {
-		set query [http::formatQuery $term]
+		set query [http::formatQuery [regsub -all -- {\s} $term "_"]]
 		set token [http::geturl ${wiki::url}${query} -timeout 10000]
 	}
 	set data [http::data $token]