From: Andrew Dolgov Date: Tue, 4 Oct 2011 10:03:16 +0000 (+0400) Subject: fix sharing for not logged in users X-Git-Tag: 1.5.6~11 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f9da2388d0059bf73fea515e2c1c6daab5c19400;p=tt-rss.git fix sharing for not logged in users --- diff --git a/backend.php b/backend.php index c0050090..1d8a99bd 100644 --- a/backend.php +++ b/backend.php @@ -14,8 +14,10 @@ $_REQUEST = array_map('stripslashes_deep', $_REQUEST); } + $op = $_REQUEST["op"]; + require_once "functions.php"; - require_once "sessions.php"; + if ($op != "share") require_once "sessions.php"; require_once "modules/backend-rpc.php"; require_once "sanity_check.php"; require_once "config.php"; @@ -40,7 +42,6 @@ init_connection($link); - $op = $_REQUEST["op"]; $subop = $_REQUEST["subop"]; $mode = $_REQUEST["mode"]; @@ -645,7 +646,9 @@ $id = db_fetch_result($result, 0, "ref_id"); $owner_uid = db_fetch_result($result, 0, "owner_uid"); + $_SESSION["uid"] = $owner_uid; $article = format_article($link, $id, false, true); + $_SESSION["uid"] = ""; print_r($article['content']);