", $disable_cache);
+
+ if ($_GET["debug"]) $timing_info = print_checkpoint("10", $timing_info);
+
+ if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
+ print "";
+ foreach ($topmost_article_ids as $id) {
+ outputArticleXML($link, $id, $feed, false);
}
+ print "";
}
if ($_GET["debug"]) $timing_info = print_checkpoint("20", $timing_info);
diff --git a/functions.php b/functions.php
index e49dd9d21..78cd39875 100644
--- a/functions.php
+++ b/functions.php
@@ -4077,8 +4077,6 @@
}
- if (!$dashboard_menu) {
-
if (strpos($_SESSION["client.userAgent"], "MSIE") === false) {
print "
@@ -4157,11 +4155,6 @@
print " | ";
}
- } else { // dashboard menu actions
-
- // not implemented
- print "";
- }
print "";
@@ -4284,11 +4277,6 @@
printCategoryHeader($link, -1, $cat_hidden, false);
}
- if (defined('_ENABLE_DASHBOARD')) {
- printFeedEntry(-4, "virt", __("Dashboard"), 0,
- "images/tag.png", $link);
- }
-
$num_starred = getFeedUnread($link, -1);
$num_published = getFeedUnread($link, -2);
$num_fresh = getFeedUnread($link, -3);
@@ -5843,29 +5831,6 @@
} // function update_daemon_common
- function generate_dashboard_feed($link) {
-
- print "";
-
- print_headline_subtoolbar($link, "", "Dashboard",
- false, false, -4, false, false, false,
- false, 0, 0, true, true, "tag.png");
-
- print " ";
- print " There is 666 unread articles in 666 feeds. ";
- print " ";
-
- print " ";
-
- print "]]>";
- print "";
- print "";
- print "";
-
- print "";
- print "";
- }
-
function sanitize_article_content($text) {
# we don't support CDATA sections in articles, they break our own escaping
$text = preg_replace("/\[\[CDATA/", "", $text);
|