Ticket #2621: mythtv-perl_bindings-Program_24_hr_leading_zero.patch
| File mythtv-perl_bindings-Program_24_hr_leading_zero.patch, 729 bytes (added by , 19 years ago) |
|---|
-
bindings/perl/MythTV/Program.pm
151 151 elsif ($hour < 1) { 152 152 $hour = 12; 153 153 } 154 $shour = "0$shour" if ($shour < 10); 154 155 $sminute = "0$sminute" if ($sminute < 10); 155 156 # End time 156 157 $eyear += 1900; … … 165 166 elsif ($ethour < 1) { 166 167 $ethour = 12; 167 168 } 169 $ehour = "0$ehour" if ($ehour < 10); 168 170 $eminute = "0$eminute" if ($eminute < 10); 169 171 # Original airdate 170 172 my ($oday, $omonth, $oyear) = (localtime($self->{'airdate'}))[3,4,5];
