diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-26 17:29:00 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-26 17:29:00 +0100 |
commit | e0200f5968480f50cb503c550dff5ab79a514b25 (patch) | |
tree | 915269f7533d13f8235dd2aa7323f89c48ed7e69 /includes/inc_vdr.php | |
parent | 398df164f62f5296fc7cd186eae02891881f5dc0 (diff) | |
download | istreamdev-e0200f5968480f50cb503c550dff5ab79a514b25.tar.gz istreamdev-e0200f5968480f50cb503c550dff5ab79a514b25.tar.bz2 |
Fixed chan logo when chan name has a /
Diffstat (limited to 'includes/inc_vdr.php')
-rwxr-xr-x | includes/inc_vdr.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/includes/inc_vdr.php b/includes/inc_vdr.php index d8ebf93..ac6be1d 100755 --- a/includes/inc_vdr.php +++ b/includes/inc_vdr.php @@ -248,10 +248,11 @@ function vdrlistchannels($category = "NULL") print "<li class=\"withimage\">"; $chan2=addslashes($chan); print " <a class=\"noeffect\" href=\"javascript:sendForm('$chan2');\">\r\n"; - if (!file_exists('logos/'.$chan.'.png')) + $channoslash = preg_replace("$/$", " ", $chan); + if (!file_exists('logos/'.$channoslash.'.png')) print " <img src=\"logos/nologoTV.png\" />\r\n"; else - print " <img src=\"logos/{$chan}.png\" />\r\n"; + print " <img src=\"logos/{$channoslash}.png\" />\r\n"; print " <span class=\"name\">$chan</span>\r\n"; print " <span class=\"comment\">$epgtitle</span><span class=\"arrow\"></span></a>\r\n</li>\r\n"; print " <form name=\"$chan\" id=\"$chan\" method=\"post\" action=\"index.php\">"; |