projects
/
fusionforge
/
fusionforge.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
project home
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3c3d11
)
fix logic bug
author
Roland Mas
<lolando@debian.org>
Mon, 10 May 2010 15:03:31 +0000
(15:03 +0000)
committer
Roland Mas
<lolando@debian.org>
Mon, 10 May 2010 15:03:31 +0000
(15:03 +0000)
while site admins can masquerade as other users, they can also be
regular group members; so, if they don’t choose to masquerade, they
also need to be treated as themselves
gforge/www/pm/t_lookup.php
patch
|
blob
|
history
diff --git
a/gforge/www/pm/t_lookup.php
b/gforge/www/pm/t_lookup.php
index
0d2a568
..
87753bb
100644
(file)
--- a/
gforge/www/pm/t_lookup.php
+++ b/
gforge/www/pm/t_lookup.php
@@
-73,7
+73,7
@@
if (!$ishttps) {
if ($ispublic) {
$showall = true;
} else if ($islogin) {
- if (!$isadmin) {
+ if (!$isadmin
|| !$asuser
) {
/* operate as ourselves */
$asuser = session_get_user()->getUnixName();
}