(bug 7059) 'anchorencode' colon function needs one more replace '+' -> '_'
This commit is contained in:
parent
2a13633f31
commit
ae0e481579
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ class CoreParserFunctions {
|
|||
}
|
||||
|
||||
function anchorencode( $parser, $text ) {
|
||||
return str_replace( '%', '.', urlencode( $text ) );
|
||||
return str_replace( '%', '.', str_replace('+', '_', urlencode( $text ) ) );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue