batch feed editor: don't try to save feed_url or title, those aren't in the dialog

This commit is contained in:
Andrew Dolgov 2023-10-04 18:32:35 +03:00
parent 40df94c169
commit c779e2ba0d
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
1 changed files with 0 additions and 10 deletions

View File

@ -782,16 +782,6 @@ class Pref_Feeds extends Handler_Protected {
$qparams = [];
switch ($k) {
case "title":
$qpart = "title = ?";
$qparams = [$feed_title];
break;
case "feed_url":
$qpart = "feed_url = ?";
$qparams = [$this->pdo->quote($feed_url)];
break;
case "update_interval":
$qpart = "update_interval = ?";
$qparams = [$upd_intl];