From: Niklas Laxström Date: Mon, 19 Sep 2005 13:28:52 +0000 (+0000) Subject: Bug 3505: No need to use . in time function X-Git-Tag: 1.6.0~1601 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=f650ee7b9f8d8c61baea0e848e2882ceec13bec1;p=lhc%2Fweb%2Fwiklou.git Bug 3505: No need to use . in time function --- diff --git a/languages/LanguageEt.php b/languages/LanguageEt.php index a0c434d5dc..4568c41568 100644 --- a/languages/LanguageEt.php +++ b/languages/LanguageEt.php @@ -1112,9 +1112,9 @@ class LanguageEt extends LanguageUtf8 { $t = substr( $ts, 8, 2 ) . ':' . substr( $ts, 10, 2 ); $t .= ':' . substr( $ts, 12, 2 ); } else { - $t = substr( $ts, 8, 2 ) . '.' . substr( $ts, 10, 2 ); + $t = substr( $ts, 8, 2 ) . '.' . substr( $ts, 10, 2 ); } - return $this->formatNum( $t ); + return $t; }