diff options
Diffstat (limited to 'templates/top.inc.php')
-rw-r--r-- | templates/top.inc.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/top.inc.php b/templates/top.inc.php index 58eacb5..707af8b 100644 --- a/templates/top.inc.php +++ b/templates/top.inc.php @@ -7,11 +7,13 @@ <link rel="icon" type="image/png" href="<?php echo $GLOBALS['root']; ?>icon.png" /> <link rel="stylesheet" type="text/css" href="<?php echo $GLOBALS['root']; ?>scuttle.css" /> <?php - $size = count($rsschannels); - for ($i = 0; $i < $size; $i++) { - echo '<link rel="alternate" type="application/rss+xml" title="'. $rsschannels[$i][0] .'" href="'. $rsschannels[$i][1] .'" />'; + if(isset($rsschannels)) { + $size = count($rsschannels); + for ($i = 0; $i < $size; $i++) { + echo '<link rel="alternate" type="application/rss+xml" title="'. $rsschannels[$i][0] .'" href="'. $rsschannels[$i][1] .'" />'; + } } - if ($loadjs) { + if (isset($loadjs)) { echo '<script type="text/javascript" src="'. $GLOBALS['root'] .'jsScuttle.php"></script>'; } ?> |