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 sphery <mtdean@…>, 17 years ago)
  • bindings/perl/MythTV/Program.pm

     
    151151        elsif ($hour < 1) {
    152152            $hour = 12;
    153153        }
     154        $shour = "0$shour" if ($shour < 10);
    154155        $sminute = "0$sminute" if ($sminute < 10);
    155156        # End time
    156157        $eyear += 1900;
     
    165166        elsif ($ethour < 1) {
    166167            $ethour = 12;
    167168        }
     169        $ehour = "0$ehour" if ($ehour < 10);
    168170        $eminute = "0$eminute" if ($eminute < 10);
    169171    # Original airdate
    170172        my ($oday, $omonth, $oyear) = (localtime($self->{'airdate'}))[3,4,5];