From: Reedy Date: Thu, 6 Sep 2012 21:29:10 +0000 (+0100) Subject: Add some trailing whitespace X-Git-Tag: 1.31.0-rc.0~22442 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=87c53575f35419090610b7986641c2773b5d27fd;p=lhc%2Fweb%2Fwiklou.git Add some trailing whitespace Change-Id: I0d43d82e2d78f86e50fac82f10bd1d7cebac176c --- diff --git a/includes/Timestamp.php b/includes/Timestamp.php index 16be775add..c9ba8d9185 100644 --- a/includes/Timestamp.php +++ b/includes/Timestamp.php @@ -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; }