X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiFormatTxt.php;h=4130e70cf2d2102eaab9d4f20c004214a3c32034;hb=4f1390819a8fcd91c0c34449736fff4548032ad3;hp=71414593febbbca0a0437c870bc07e48327771c8;hpb=4f5d2386f35384cea26db6f1ea6d7b5e425b8435;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiFormatTxt.php b/includes/api/ApiFormatTxt.php index 71414593fe..4130e70cf2 100644 --- a/includes/api/ApiFormatTxt.php +++ b/includes/api/ApiFormatTxt.php @@ -30,10 +30,6 @@ */ class ApiFormatTxt extends ApiFormatBase { - public function __construct( $main, $format ) { - parent::__construct( $main, $format ); - } - public function getMimeType() { // This looks like it should be text/plain, but IE7 is so // brain-damaged it tries to parse text/plain as HTML if it @@ -48,8 +44,4 @@ class ApiFormatTxt extends ApiFormatBase { public function getDescription() { return 'Output data in PHP\'s print_r() format' . parent::getDescription(); } - - public function getVersion() { - return __CLASS__ . ': $Id$'; - } }