* Fix proper encoding of '%' sign when used in post titles
(garvinhicking)
This commit is contained in:
@ -22,6 +22,7 @@ if (defined('S9Y_FRAMEWORK_PERMALINKS')) {
|
||||
function serendipity_makeFilename($str, $stripDots = false) {
|
||||
static $from = array(
|
||||
' ',
|
||||
'%',
|
||||
|
||||
'<27>',
|
||||
'<27>',
|
||||
@ -65,6 +66,7 @@ function serendipity_makeFilename($str, $stripDots = false) {
|
||||
|
||||
static $to = array(
|
||||
'-',
|
||||
'%25',
|
||||
|
||||
'AE',
|
||||
'ae',
|
||||
|
Reference in New Issue
Block a user