]> git.wh0rd.org Git - tt-rss.git/commitdiff
force separate data in ttrss_entries between users
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Fri, 18 Jan 2013 13:42:26 +0000 (17:42 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Fri, 18 Jan 2013 13:50:18 +0000 (17:50 +0400)
include/rssfuncs.php

index 2f51febb68658f8b9d5a459ea3201534a6b5275c..bc3cad7040c9cd7d830b0a06dcf4963fd9cd9f73 100644 (file)
                                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());