summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-01 21:25:55 +0400
committerAndrew Dolgov <[email protected]>2011-04-01 21:25:55 +0400
commit7e0943c6bc902b2b176e64c30e7443adad95207d (patch)
tree3f002e72574bb93ab560edf18a99fda7a367f99c /backend.php
parented102aa083839c205db31bff3402b1d8783e2860 (diff)
fix pubsubhubbub challenge response
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php17
1 files changed, 6 insertions, 11 deletions
diff --git a/backend.php b/backend.php
index d62b2db2d..cf80e0e37 100644
--- a/backend.php
+++ b/backend.php
@@ -44,8 +44,6 @@
$subop = $_REQUEST["subop"];
$mode = $_REQUEST["mode"];
- $print_exec_time = false;
-
if ((!$op || $op == "rss" || $op == "dlg") && !$_REQUEST["noxml"]) {
header("Content-Type: application/xml; charset=utf-8");
} else {
@@ -483,17 +481,14 @@
print "-1;User not found";
}
- $print_exec_time = false;
break; // getUnread
case "digestTest":
print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
- $print_exec_time = false;
break; // digestTest
case "digestSend":
send_headlines_digests($link);
- $print_exec_time = false;
break; // digestSend
case "loading":
@@ -543,13 +538,17 @@
db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 2
WHERE id = '$feed_id'");
- echo $_REQUEST['hub_challenge'];
+ print $_REQUEST['hub_challenge'];
+ return;
+
} else if ($mode == "unsubscribe") {
db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 0
WHERE id = '$feed_id'");
- echo $_REQUEST['hub_challenge'];
+ print $_REQUEST['hub_challenge'];
+ return;
+
} else if (!$mode) {
// Received update ping, schedule feed update.
@@ -567,7 +566,3 @@
// We close the connection to database.
db_close($link);
?>
-
-<?php if ($print_exec_time) { ?>
-<!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
-<?php } ?>