Whitespace fixes for r62195, remove out-of-context comment
authorRoan Kattouw <catrope@users.mediawiki.org>
Wed, 10 Feb 2010 10:54:00 +0000 (10:54 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Wed, 10 Feb 2010 10:54:00 +0000 (10:54 +0000)
includes/api/ApiParse.php

index c24872b..f731047 100644 (file)
@@ -168,16 +168,14 @@ class ApiParse extends ApiBase {
                        
                if ( isset( $prop['headitems'] ) )
                        $result_array['headitems'] = $this->formatHeadItems( $p_result->getHeadItems() );
-                       
-               if ( isset( $prop['headhtml'] ) ) {
                
+               if ( isset( $prop['headhtml'] ) ) {
                        $out = new OutputPage;
-                       $out->addParserOutputNoText( $p_result ); // PO object generated by action=parse
-                               
+                       $out->addParserOutputNoText( $p_result );
                        $result_array['stylesheets'] = array();
                        $result->setContent( $result_array['headhtml'], $out->headElement( $wgUser->getSkin() ) );
                }
-                                                       
+               
                if ( !is_null( $oldid ) )
                        $result_array['revid'] = intval( $oldid );