summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-01-18 17:42:26 +0400
committerAndrew Dolgov <[email protected]>2013-01-18 17:50:18 +0400
commit3a4c8973829af3a3fd02c11934b7d5ed27673306 (patch)
treef542c8d3b2d9b586f33d57515e35d3a51f819ec5
parent10bdeb4b82cc5675dcd5ef1a8aafb4d8c47c5ba3 (diff)
force separate data in ttrss_entries between users
-rw-r--r--include/rssfuncs.php10
1 files changed, 2 insertions, 8 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index 2f51febb6..bc3cad704 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -411,20 +411,14 @@
if (!$entry_guid) $entry_guid = $item->get_link();
if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
- if ($cache_content) {
- $entry_guid = "ccache:$entry_guid";
- }
-
- if ($auth_login || $auth_pass) {
- $entry_guid = "auth,$owner_uid:$entry_guid";
- }
-
if ($debug_enabled) {
_debug("update_rss_feed: guid $entry_guid");
}
if (!$entry_guid) continue;
+ $entry_guid = "$owner_uid,$entry_guid";
+
$entry_timestamp = "";
$entry_timestamp = strtotime($item->get_date());