summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-17 19:42:02 +0100
committerAndrew Dolgov <[email protected]>2009-01-17 19:42:02 +0100
commitabd9b16507fd517dc56af1be0d11d7043063ddc5 (patch)
treeaa5978a7595a5e9f13242853a7c8df86e5457d30
parent34c30ac126cb1b00b36065b4dae705774c4e52b3 (diff)
getLabelCounters: skip processing when labels are disabled; misc performance tweaks
-rw-r--r--backend.php2
-rw-r--r--functions.php72
2 files changed, 38 insertions, 36 deletions
diff --git a/backend.php b/backend.php
index 210de06f9..3e6eea662 100644
--- a/backend.php
+++ b/backend.php
@@ -358,7 +358,7 @@
// }
if (get_pref($link, 'COMBINED_DISPLAY_MODE') || $subop ||
- time() - $_SESSION["viewfeed:counters_stamp"] > 30) {
+ time() - $_SESSION["viewfeed:counters_stamp"] > 60) {
if (!$offset) {
print "<counters>";
getAllCounters($link, $omode, $feed);
diff --git a/functions.php b/functions.php
index c738ebe65..a47e0218e 100644
--- a/functions.php
+++ b/functions.php
@@ -2678,47 +2678,49 @@
$ret_arr["-3"]["description"] = __("Fresh articles");
}
+ if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) {
- $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
- ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
+ $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
+ ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
+
+ while ($line = db_fetch_assoc($result)) {
- while ($line = db_fetch_assoc($result)) {
-
- $id = -$line["id"] - 11;
-
- $label_name = $line["description"];
-
- error_reporting (0);
-
- $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds
- WHERE (" . $line["sql_exp"] . ") AND unread = true AND
- ttrss_feeds.hidden = false AND
- $age_qpart AND
- ttrss_user_entries.feed_id = ttrss_feeds.id AND
- ttrss_user_entries.ref_id = ttrss_entries.id AND
- ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
-
- $count = db_fetch_result($tmp_result, 0, "count");
-
- if (!$smart_mode || $old_counters[$id] != $count) {
- $old_counters[$id] = $count;
- $lctrs_modified = true;
- if (!$ret_mode) {
-
- if (get_pref($link, 'EXTENDED_FEEDLIST')) {
- $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\"";
+ $id = -$line["id"] - 11;
+
+ $label_name = $line["description"];
+
+ error_reporting (0);
+
+ $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds
+ WHERE (" . $line["sql_exp"] . ") AND unread = true AND
+ ttrss_feeds.hidden = false AND
+ $age_qpart AND
+ ttrss_user_entries.feed_id = ttrss_feeds.id AND
+ ttrss_user_entries.ref_id = ttrss_entries.id AND
+ ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
+
+ $count = db_fetch_result($tmp_result, 0, "count");
+
+ if (!$smart_mode || $old_counters[$id] != $count) {
+ $old_counters[$id] = $count;
+ $lctrs_modified = true;
+ if (!$ret_mode) {
+
+ if (get_pref($link, 'EXTENDED_FEEDLIST')) {
+ $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\"";
+ } else {
+ $xmsg_part = "";
+ }
+
+ print "<counter type=\"label\" id=\"$id\" counter=\"$count\" $xmsg_part/>";
} else {
- $xmsg_part = "";
+ $ret_arr[$id]["counter"] = $count;
+ $ret_arr[$id]["description"] = $label_name;
}
-
- print "<counter type=\"label\" id=\"$id\" counter=\"$count\" $xmsg_part/>";
- } else {
- $ret_arr[$id]["counter"] = $count;
- $ret_arr[$id]["description"] = $label_name;
}
+
+ error_reporting (DEFAULT_ERROR_LEVEL);
}
-
- error_reporting (DEFAULT_ERROR_LEVEL);
}
if ($smart_mode && $lctrs_modified) {