X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fblosxom.git;a=blobdiff_plain;f=blosxom.cgi;h=fd8124a60f853f4740d7173e952d83b5a5bdb842;hp=7d1daef0b598073b65a05ab06be62f13c31b029e;hb=48935bf37d13ca37f80234b3183f056eb5be7c57;hpb=335c5f8674af60403941e13ec7937b3f23bd9431 diff --git a/blosxom.cgi b/blosxom.cgi index 7d1daef..fd8124a 100755 --- a/blosxom.cgi +++ b/blosxom.cgi @@ -504,7 +504,7 @@ sub generate { ($dw,$mo,$mo_num,$da,$ti,$yr,$utc_offset) = nice_date($files{"$path_file"}); ($hr,$min) = split /:/, $ti; ($hr12, $ampm) = $hr >= 12 ? ($hr - 12,'pm') : ($hr, 'am'); - $hr12 =~ s/^0//; $hr12 == 0 and $hr12 = 12; + $hr12 =~ s/^0//; if ($hr12 == 0) {$hr12 = 12}; # Only stories from the right date my($path_info_yr,$path_info_mo_num, $path_info_da) = split /\//, $date;