From: Andrew Dolgov Date: Wed, 30 Nov 2005 08:30:43 +0000 (+0100) Subject: xml-import: fix user table checking X-Git-Tag: schema_feature_freeze_for_1.1~19 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=5a66425944e4fc829d0712fc3b9d512a0b264f49;p=tt-rss.git xml-import: fix user table checking --- diff --git a/xml-import.php b/xml-import.php index dee46236..d35c01a9 100644 --- a/xml-import.php +++ b/xml-import.php @@ -99,7 +99,7 @@ print "Found base ID: $entry_id
"; $result = db_query($link, "SELECT int_id FROM ttrss_user_entries WHERE - ref_id = '$entry_id'"); + ref_id = '$entry_id' AND owner_uid = '$owner_uid'"); if (db_num_rows($result) == 0) { print "User table entry not found, creating...
";