diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-05-10 08:59:41 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-05-10 08:59:41 +0000 |
commit | 2756e3f85818346a478725b6dd94a966e0d92c07 (patch) | |
tree | efad4c6566773670dc5f9a8b733f2a3ed3fe4a57 /templates/top.inc.php | |
parent | e273c0d367da161651324eca1b7e4177c670c91f (diff) | |
download | semanticscuttle-2756e3f85818346a478725b6dd94a966e0d92c07.tar.gz semanticscuttle-2756e3f85818346a478725b6dd94a966e0d92c07.tar.bz2 |
Bug fixes: correct minor bugs appearing with 'notice' level in PHP
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@122 b3834d28-1941-0410-a4f8-b48e95affb8f
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>'; } ?> |