From: Andrew Dolgov Date: Thu, 29 Dec 2005 15:52:05 +0000 (+0100) Subject: fix broken selection of user manager X-Git-Tag: schema_freeze_for_1.1.2~55 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=4154a4158f225b0fd3d666472ac9c25bf46971ef;p=tt-rss.git fix broken selection of user manager --- diff --git a/backend.php b/backend.php index e53b657b..c39908c9 100644 --- a/backend.php +++ b/backend.php @@ -3505,7 +3505,7 @@ $uid = $line["id"]; $edit_uid = $_GET["id"]; - if ($uid == $_SESSION["uid"] || ($subop == "edit" && $uid != $edit_uid)) { + if ($subop == "edit" && $uid != $edit_uid) { $class .= "Grayed"; $this_row_id = ""; } else {