mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 03:45:57 +00:00
remove pubsubhubbub: dead
This commit is contained in:
@@ -784,20 +784,8 @@ class Pref_Feeds extends Handler_Protected {
|
||||
<button class=\"danger\" dojoType=\"dijit.form.Button\" onclick='return unsubscribeFeed($feed_id, \"$title\")'>".
|
||||
__('Unsubscribe')."</button>";
|
||||
|
||||
if (PUBSUBHUBBUB_ENABLED) {
|
||||
$pubsub_state = $this->dbh->fetch_result($result, 0, "pubsub_state");
|
||||
$pubsub_btn_disabled = ($pubsub_state == 2) ? "" : "disabled=\"1\"";
|
||||
|
||||
print "<button dojoType=\"dijit.form.Button\" id=\"pubsubReset_Btn\" $pubsub_btn_disabled
|
||||
onclick='return resetPubSub($feed_id, \"$title\")'>".__('Resubscribe to push updates').
|
||||
"</button>";
|
||||
}
|
||||
|
||||
print "</div>";
|
||||
|
||||
print "<div dojoType=\"dijit.Tooltip\" connectId=\"pubsubReset_Btn\" position=\"below\">".
|
||||
__('Resets PubSubHubbub subscription status for push-enabled feeds.')."</div>";
|
||||
|
||||
print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').execute()\">".__('Save')."</button>
|
||||
<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').hide()\">".__('Cancel')."</button>
|
||||
</div>";
|
||||
@@ -1118,16 +1106,6 @@ class Pref_Feeds extends Handler_Protected {
|
||||
return;
|
||||
}
|
||||
|
||||
function resetPubSub() {
|
||||
|
||||
$ids = $this->dbh->escape_string($_REQUEST["ids"]);
|
||||
|
||||
$this->dbh->query("UPDATE ttrss_feeds SET pubsub_state = 0 WHERE id IN ($ids)
|
||||
AND owner_uid = " . $_SESSION["uid"]);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
function remove() {
|
||||
|
||||
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
|
||||
|
||||
Reference in New Issue
Block a user