diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2005-11-30 09:30:43 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2005-11-30 09:30:43 +0100 |
| commit | 5a66425944e4fc829d0712fc3b9d512a0b264f49 (patch) | |
| tree | e3d6c352659ee31bf29f1250ca358a122ce11373 /xml-import.php | |
| parent | a654a595b8642b62a18af16248fc0c44d9a8ea46 (diff) | |
xml-import: fix user table checking
Diffstat (limited to 'xml-import.php')
| -rw-r--r-- | xml-import.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xml-import.php b/xml-import.php index dee462368..d35c01a9f 100644 --- a/xml-import.php +++ b/xml-import.php @@ -99,7 +99,7 @@ print "Found base ID: $entry_id<br>"; $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...<br>"; |