OSDN Git Service

BugTrack/2478 Handle plus(+) char in URL as space for page name
[pukiwiki/pukiwiki.git] / lib / func.php
index 68b7cc1..41bcd81 100644 (file)
@@ -462,7 +462,7 @@ function arg_check($str)
 
 function _pagename_urlencode_callback($matches)
 {
-       return rawurlencode($matches[0]);
+       return urlencode($matches[0]);
 }
 
 function pagename_urlencode($page)