summaryrefslogtreecommitdiff
path: root/xml-import.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-30 09:30:43 +0100
committerAndrew Dolgov <[email protected]>2005-11-30 09:30:43 +0100
commit5a66425944e4fc829d0712fc3b9d512a0b264f49 (patch)
treee3d6c352659ee31bf29f1250ca358a122ce11373 /xml-import.php
parenta654a595b8642b62a18af16248fc0c44d9a8ea46 (diff)
xml-import: fix user table checking
Diffstat (limited to 'xml-import.php')
-rw-r--r--xml-import.php2
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>";