API:
[lhc/web/wiklou.git] / includes / api / ApiExpandTemplates.php
index d043bcb..df99ba1 100644 (file)
@@ -55,18 +55,11 @@ class ApiExpandTemplates extends ApiBase {
 
                // Return result
                $result = $this->getResult();
-               if( $this->isRaw() ) {
-                       ApiFormatRaw :: setRawData( $result, $retval );
-               }
                $retval_array = array();
                $result->setContent( $retval_array, $retval );
                $result->addValue( null, $this->getModuleName(), $retval_array );
        }
 
-       public function supportRaw() {
-               return true;
-       }
-
        protected function getAllowedParams() {
                return array (
                        'title' => array( 
@@ -98,4 +91,3 @@ class ApiExpandTemplates extends ApiBase {
        }
 }
 
-