From f058f78622f87c6fbcd01eef831633b58eea89f2 Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Sun, 11 Aug 2013 14:47:52 +0300 Subject: [PATCH] fix format bit mask --- ipf/format.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipf/format.php b/ipf/format.php index 1d2bbcd..0a7b29f 100644 --- a/ipf/format.php +++ b/ipf/format.php @@ -143,7 +143,7 @@ final class IPF_Format public static function makeTimeFormat($flags, $controls) { - if (!($flags & 102)) // no time flags + if (!($flags & 112)) // no time flags return ''; $seconds = $flags & self::TIME_SECONDS; -- 2.49.0