fix sql error when subscribing to a feed using feed archive

This commit is contained in:
Andrew Dolgov 2016-07-05 11:48:36 +03:00
parent 582ff3cf6e
commit cfc2fe50cb
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ class RPC extends Handler_Protected {
if ($this->dbh->num_rows($result) == 0) {
$result = $this->dbh->query("INSERT INTO ttrss_feeds
(owner_uid,feed_url,title,cat_id,site_url)
VALUES ('$id','".$_SESSION["uid"]."',
VALUES ('".$_SESSION["uid"]."',
'$feed_url', '$title', NULL, '$site_url')");
}
}