* Fix proper encoding of '%' sign when used in post titles
(garvinhicking)
This commit is contained in:
parent
879b4df578
commit
3d34cfa548
@ -74,6 +74,9 @@ Version 1.3 ()
|
|||||||
Version 1.2.1 ()
|
Version 1.2.1 ()
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
* Fix proper encoding of '%' sign when used in post titles
|
||||||
|
(garvinhicking)
|
||||||
|
|
||||||
* Encode RSS feed links, Patch by Hanno Boeck
|
* Encode RSS feed links, Patch by Hanno Boeck
|
||||||
|
|
||||||
* Fix spartacus filter listing showing event plugin groups in the
|
* Fix spartacus filter listing showing event plugin groups in the
|
||||||
|
@ -22,6 +22,7 @@ if (defined('S9Y_FRAMEWORK_PERMALINKS')) {
|
|||||||
function serendipity_makeFilename($str, $stripDots = false) {
|
function serendipity_makeFilename($str, $stripDots = false) {
|
||||||
static $from = array(
|
static $from = array(
|
||||||
' ',
|
' ',
|
||||||
|
'%',
|
||||||
|
|
||||||
'Ä',
|
'Ä',
|
||||||
'ä',
|
'ä',
|
||||||
@ -65,6 +66,7 @@ function serendipity_makeFilename($str, $stripDots = false) {
|
|||||||
|
|
||||||
static $to = array(
|
static $to = array(
|
||||||
'-',
|
'-',
|
||||||
|
'%25',
|
||||||
|
|
||||||
'AE',
|
'AE',
|
||||||
'ae',
|
'ae',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user