summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-16 17:12:28 +0100
committerAndrew Dolgov <[email protected]>2009-01-16 17:12:28 +0100
commita5c815d35822dab932c0303837e82d88bcb0f308 (patch)
tree1df2d5e0147471a76aebf2192bb87d9418af73da /functions.php
parentcc914918fa8827aa54a9071349c9ebaa7ecde94c (diff)
code cleanup (remove dashboard initial stuff)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php35
1 files changed, 0 insertions, 35 deletions
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 "<td class=\"headlineActions$rtl_cpart\">
@@ -4157,11 +4155,6 @@
print "</td>";
}
- } else { // dashboard menu actions
-
- // not implemented
- print "</td>";
- }
print "<td class=\"headlineTitle$rtl_cpart\">";
@@ -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 "<div id=\"headlinesContainer\">";
-
- print_headline_subtoolbar($link, "", "Dashboard",
- false, false, -4, false, false, false,
- false, 0, 0, true, true, "tag.png");
-
- print "<div id=\"headlinesInnerContainer\" class=\"dashboard\">";
- print "<div>There is <b>666</b> unread articles in <b>666</b> feeds.</div>";
- print "</div>";
-
- print "</div>";
-
- print "]]></headlines>";
- print "<headlines-count value=\"0\"/>";
- print "<headlines-unread value=\"0\"/>";
- print "<disable-cache value=\"1\"/>";
-
- print "<articles>";
- print "</articles>";
- }
-
function sanitize_article_content($text) {
# we don't support CDATA sections in articles, they break our own escaping
$text = preg_replace("/\[\[CDATA/", "", $text);