Index: trunk/phase3/includes/parser/Parser_OldPP.php |
— | — | @@ -3887,7 +3887,7 @@ |
3888 | 3888 | * @return mixed An expanded string, or false if invalid. |
3889 | 3889 | */ |
3890 | 3890 | function validateSig( $text ) { |
3891 | | - return( wfIsWellFormedXmlFragment( $text ) ? $text : false ); |
| 3891 | + return( Xml::isWellFormedXmlFragment( $text ) ? $text : false ); |
3892 | 3892 | } |
3893 | 3893 | |
3894 | 3894 | /** |
Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -3822,7 +3822,7 @@ |
3823 | 3823 | * @return mixed An expanded string, or false if invalid. |
3824 | 3824 | */ |
3825 | 3825 | function validateSig( $text ) { |
3826 | | - return( wfIsWellFormedXmlFragment( $text ) ? $text : false ); |
| 3826 | + return( Xml::isWellFormedXmlFragment( $text ) ? $text : false ); |
3827 | 3827 | } |
3828 | 3828 | |
3829 | 3829 | /** |