Index: trunk/phase3/includes/Feed.php |
— | — | @@ -55,7 +55,7 @@ |
56 | 56 | /** |
57 | 57 | * @static |
58 | 58 | */ |
59 | | - static function xmlEncode( $string ) { |
| 59 | + function xmlEncode( $string ) { |
60 | 60 | $string = str_replace( "\r\n", "\n", $string ); |
61 | 61 | $string = preg_replace( '/[\x00-\x08\x0b\x0c\x0e-\x1f]/', '', $string ); |
62 | 62 | return htmlspecialchars( $string ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -109,8 +109,7 @@ |
110 | 110 | * (bug 13770) Fixed incorrect detection of PHP's DOM module |
111 | 111 | * (bug 14790) Export of category pages when using Category: prefix now actually |
112 | 112 | gives results |
113 | | -* (bug 15128) Feed::xmlEncode() function is now declared as static |
114 | | - |
| 113 | + |
115 | 114 | === API changes in 1.14 === |
116 | 115 | |
117 | 116 | * Registration time of users registered before the DB field was created is now |