Index: trunk/phase3/includes/ResourceLoader.php |
— | — | @@ -300,7 +300,10 @@ |
301 | 301 | return; |
302 | 302 | } |
303 | 303 | |
304 | | - echo $this->makeModuleResponse( $context, $modules, $missing ); |
| 304 | + $response = $this->makeModuleResponse( $context, $modules, $missing ); |
| 305 | + // Clear any warnings from the buffer |
| 306 | + ob_clean(); |
| 307 | + echo $response; |
305 | 308 | |
306 | 309 | wfProfileOut( __METHOD__ ); |
307 | 310 | } |