summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-04-29 07:02:46 +0100
committerAndrew Dolgov <[email protected]>2007-04-29 07:02:46 +0100
commitdb5b3540cfa0e77958e7a08df2e17d914b2caa15 (patch)
tree8e0693f8eaf2b94019ce8613969723bd16aa06b3
parent5f2add1332691c5b6ebc26dcfe58bbb63d92ba3b (diff)
outputFeedList: add some CRs
-rw-r--r--functions.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/functions.php b/functions.php
index 84ebc60c5..c555f7fb5 100644
--- a/functions.php
+++ b/functions.php
@@ -2960,8 +2960,8 @@
/* virtual feeds */
if (get_pref($link, 'ENABLE_FEED_CATS')) {
- print "<li class=\"feedCat\">".__('Special')."</li>";
- print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
+ print "<li class=\"feedCat\">".__('Special')."</li>\n";
+ print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">\n";
}
$num_starred = getFeedUnread($link, -1);
@@ -2986,10 +2986,10 @@
if (db_num_rows($result) > 0) {
if (get_pref($link, 'ENABLE_FEED_CATS')) {
- print "<li class=\"feedCat\">".__('Labels')."</li>";
- print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
+ print "<li class=\"feedCat\">".__('Labels')."</li>\n";
+ print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">\n";
} else {
- print "<li><hr></li>";
+ print "<li><hr></li>\n";
}
}
@@ -3023,7 +3023,7 @@
}
if (!get_pref($link, 'ENABLE_FEED_CATS')) {
- print "<li><hr></li>";
+ print "<li><hr></li>\n";
}
if (get_pref($link, 'ENABLE_FEED_CATS')) {
@@ -3159,16 +3159,16 @@
$catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
- print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">
+ print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">\n
<a id=\"FCATN-$cat_id\" href=\"javascript:toggleCollapseCat($cat_id)\">$tmp_category</a>
<a href=\"#\" onclick=\"javascript:viewCategory($cat_id)\" id=\"FCAP-$cat_id\">
<span id=\"FCATCTR-$cat_id\" title=\"Click to browse category\"
class=\"$catctr_class\">($cat_unread)</span> $ellipsis
- </a></li>";
+ </a></li>\n";
// !!! NO SPACE before <ul...feedCatList - breaks firstChild DOM function
// -> keyboard navigation, etc.
- print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\">";
+ print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\">\n";
}
printFeedEntry($feed_id, $class, $feed, $unread,
@@ -3179,7 +3179,7 @@
}
if (db_num_rows($result) == 0) {
- print "<li>".__('No feeds to display.')."</li>";
+ print "<li>".__('No feeds to display.')."</li>\n";
}
} else {