From 0bfa3ba28610bb3dac7d8808933fd97697d4654c Mon Sep 17 00:00:00 2001
From: martin
Date: Thu, 15 Aug 2002 05:43:38 +0000
Subject: [PATCH] No point in being able to login as yourself
---
user/view.php | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/user/view.php b/user/view.php
index 573c098a7e..5c36475bdb 100644
--- a/user/view.php
+++ b/user/view.php
@@ -127,11 +127,13 @@
echo "id\">";
echo "";
echo "
";
- echo " | ";
+ if ($user->id != $USER->id) {
+ echo " | ";
+ }
}
echo "\n";
--
2.39.5