summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-20 13:33:37 +0100
committerAndrew Dolgov <[email protected]>2006-08-20 13:33:37 +0100
commit7e3634d91891d5ab85f8d0b021bc296d728c92c7 (patch)
tree81d15dff1954df241291e5cd96897d7153609029 /backend.php
parent3a7a4bbc6dded246c47059a0f35a512aebf5d88f (diff)
add experimental digest code
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php15
1 files changed, 13 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index 11e546459..9b38303d5 100644
--- a/backend.php
+++ b/backend.php
@@ -27,6 +27,8 @@
$err_msg = check_configuration_variables();
+ $print_exec_time = true;
+
if ($err_msg) {
header("Content-Type: application/xml");
print_error_xml(9, $err_msg); die;
@@ -3880,7 +3882,7 @@
if ($op == "getUnread") {
$login = db_escape_string($_GET["login"]);
- header("Content-Type: text/plain");
+ header("Content-Type: text/plain; charset=utf-8");
$result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
@@ -3890,11 +3892,20 @@
} else {
print "Error: user not found";
}
+
+ $print_exec_time = false;
+ }
+
+ if ($op == "digestTest") {
+ header("Content-Type: text/plain");
+ echo prepare_headlines_digest($link, $_SESSION["uid"]);
+ $print_exec_time = false;
+
}
db_close($link);
?>
-<?php if ($op != "getUnread") { ?>
+<?php if ($print_exec_time) { ?>
<!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
<?php } ?>