* More precise comment
authorRob Church <robchurch@users.mediawiki.org>
Sun, 29 Jul 2007 18:48:20 +0000 (18:48 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Sun, 29 Jul 2007 18:48:20 +0000 (18:48 +0000)
* Trim whitespace

includes/media/BMP.php

index ec953d0..2f451b0 100644 (file)
@@ -1,8 +1,8 @@
 <?php
+
 /**
- * Handler for Microsoft bitmap format (bmp). It inherits most of the methods
- * from ImageHandler, some of them had to be overriden cause gd does not
- * support this format.
+ * Handler for Microsoft's bitmap format; getimagesize() doesn't
+ * support these files
  *
  * @addtogroup Media
  */
@@ -26,6 +26,4 @@ class BmpHandler extends BitmapHandler {
                $h = unpack( 'V' , $h );
                return array( $w[1], $h[1] );
        }
-}
-
-
+}
\ No newline at end of file