Add some trailing whitespace
authorReedy <reedy@wikimedia.org>
Thu, 6 Sep 2012 21:29:10 +0000 (22:29 +0100)
committerReedy <reedy@wikimedia.org>
Thu, 6 Sep 2012 21:29:10 +0000 (22:29 +0100)
Change-Id: I0d43d82e2d78f86e50fac82f10bd1d7cebac176c

includes/Timestamp.php

index 16be775..c9ba8d9 100644 (file)
@@ -140,14 +140,14 @@ class MWTimestamp {
                        try {
                                $final = new DateTime( $strtime, new DateTimeZone( 'GMT' ) );
                        } catch(Exception $e) {
-                               throw new TimestampException( __METHOD__ . 'Invalid timestamp format.' );
+                               throw new TimestampException( __METHOD__ . ' Invalid timestamp format.' );
                        }
                } else {
                        $final = strtotime( $strtime );
                }
 
                if( $final === false ) {
-                       throw new TimestampException( __METHOD__ . 'Invalid timestamp format.' );
+                       throw new TimestampException( __METHOD__ . ' Invalid timestamp format.' );
                }
                $this->timestamp = $final;
        }