Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Bug in epg2html



Hi Klaus,

i think i have found an little bug in epg2html.pl

The Duration is missing, here is the fix:

---cut---

--- epg2html.pl.orig    Mon May 27 15:21:20 2002
+++ epg2html.pl Mon May 27 15:18:15 2002
@@ -45,7 +45,7 @@
          push(@Index, qq{<a href="$Page">$Channel</a><br>\n});
          my %Events = ();
          while (<>) {
-               if (/^E (.*?) (.*?) (.*?)/) {
+               if (/^E (.*?) (.*?) (.*?) (.*?)/) {
                   (my $Time, $Duration) = ($2, $3);
                   my $Title = "", $Subtitle = "", $Description = "";
                   while (<>) {
		   
---cut---		   

-- 
Bye
Matthias




Home | Main Index | Thread Index