summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-29 16:52:05 +0100
committerAndrew Dolgov <[email protected]>2005-12-29 16:52:05 +0100
commit4154a4158f225b0fd3d666472ac9c25bf46971ef (patch)
tree19b333f5b8fc9c2c995161259a8c836b53f05eeb /backend.php
parent8926aab826ced7a664760813229ea818b92de74c (diff)
fix broken selection of user manager
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index e53b657b3..c39908c99 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 {