summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2009-03-16 04:54:00 +0000
committerChad Kieffer <chad@2tbsp.com>2009-03-16 04:54:00 +0000
commit542ab6db1f13541cbda4e3eaafc27f57623d32b3 (patch)
tree7cdf334aa2fd67f57383aad94b4bed5b56d0a6fa /modules
parent83912bce204a29d1d28637aa425b8482675eeb3f (diff)
Combined "Logged in as..." and "Modify Profile" to by just "Logged in as FullName"
Diffstat (limited to 'modules')
-rw-r--r--modules/user/views/login.html.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/user/views/login.html.php b/modules/user/views/login.html.php
index 27373f02..8ce2822a 100644
--- a/modules/user/views/login.html.php
+++ b/modules/user/views/login.html.php
@@ -5,10 +5,9 @@
title="<?= t("Login to Gallery") ?>"
id="gLoginLink"><?= t("Login") ?></a></li>
<? else: ?>
- <li class="first"><?= t("Logged in as %name", array("name" => $user->full_name)) ?></li>
- <li><a href="<?= url::site("form/edit/users/{$user->id}") ?>"
+ <li class="first"><?= t("Logged in as ") ?><a href="<?= url::site("form/edit/users/{$user->id}") ?>"
title="<?= t("Edit Your Profile") ?>"
- id="gUserProfileLink" class="gDialogLink"><?= t("Modify Profile") ?></a></li>
+ id="gUserProfileLink" class="gDialogLink"><?= $user->full_name ?></a></li>
<li><a href="<?= url::site("logout?continue=" . url::current(true)) ?>"
id="gLogoutLink"><?= t("Logout") ?></a></li>
<? endif; ?>