diff options
Diffstat (limited to 'formats/PlaintextFormat.php')
-rw-r--r-- | formats/PlaintextFormat.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/formats/PlaintextFormat.php b/formats/PlaintextFormat.php index 5a0522cf..a1ef9e7f 100644 --- a/formats/PlaintextFormat.php +++ b/formats/PlaintextFormat.php @@ -21,12 +21,4 @@ class PlaintextFormat extends FormatAbstract { $toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8'); return $toReturn; } - - public function display(){ - $this - ->setContentType(self::MIME_TYPE . '; charset=' . $this->getCharset()) - ->callContentType(); - - return parent::display(); - } } |