X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fcontent%2FTextContentHandler.php;h=e3dc187ffe6831199680c1a01e811faa596d8d9d;hb=b911029b3915f2c7970e1211cc54e8d0fc05b632;hp=4a7944caeadb535bea9846c65222f3724a7e1593;hpb=4ad03aa11dacd2f443105e43fd1429398aa73bdc;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/content/TextContentHandler.php b/includes/content/TextContentHandler.php index 4a7944caea..e3dc187ffe 100644 --- a/includes/content/TextContentHandler.php +++ b/includes/content/TextContentHandler.php @@ -38,14 +38,14 @@ class TextContentHandler extends ContentHandler { * Returns the content's text as-is. * * @param Content $content - * @param string $format The serialization format to check + * @param string|null $format The serialization format to check * * @return mixed */ public function serializeContent( Content $content, $format = null ) { $this->checkFormat( $format ); - return $content->getNativeData(); + return $content->getText(); } /** @@ -108,7 +108,7 @@ class TextContentHandler extends ContentHandler { * @since 1.21 * * @param string $text Serialized form of the content - * @param string $format The format used for serialization + * @param string|null $format The format used for serialization * * @return Content The TextContent object wrapping $text */