diff options
Diffstat (limited to 'includes/inc_stream.php')
-rwxr-xr-x | includes/inc_stream.php | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/includes/inc_stream.php b/includes/inc_stream.php index b4cb5bd..28a962c 100755 --- a/includes/inc_stream.php +++ b/includes/inc_stream.php @@ -23,7 +23,14 @@ if (infostreamexist()) print " <ul class=\"pageitem\">\r\n"; if ($type == 3) - $logopath = "ram/stream-tb.png"; + { + if (file_exists("ram/stream-tb.png")) + $logopath = "ram/stream-tb.png"; + else if (file_exists("ram/stream-tb.jpg")) + $logopath = "ram/stream-tb.jpg"; + else + $logopath = ""; + } else $logopath = "logos/" .$realname .".png"; @@ -111,7 +118,14 @@ else print " <ul class=\"pageitem\">\r\n"; if ($type == 3) - $logopath = "ram/stream-tb.png"; + { + if (file_exists("ram/stream-tb.png")) + $logopath = "ram/stream-tb.png"; + else if (file_exists("ram/stream-tb.jpg")) + $logopath = "ram/stream-tb.jpg"; + else + $logopath = ""; + } else $logopath = "logos/" .$realname .".png"; |