* Use AUR_URL/account/userfoo/edit format for own account editing.
* Change "Accounts" label to "My Account" for regular users.
* Add ability for Developers and Trusted Users to edit their account
without having to use the search form first.

Signed-off-by: canyonknight <[email protected]>
---
 web/template/header.php | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/web/template/header.php b/web/template/header.php
index 52c0ab8..2c04b58 100644
--- a/web/template/header.php
+++ b/web/template/header.php
@@ -55,7 +55,10 @@
                                        <?php if (isset($_COOKIE['AURSID'])): ?>
                                                <li><a href="<?php echo 
get_uri('/packages/'); ?>?SeB=m&amp;K=<?php print 
username_from_sid($_COOKIE["AURSID"]); ?>"><?php print __("My Packages"); 
?></a></li>
                                                <li><a href="<?php echo 
get_uri('/submit/'); ?>"><?php print __("Submit"); ?></a></li>
-                                               <li><a href="<?php echo 
get_uri('/accounts/'); ?>"><?php print __("Accounts"); ?></a></li>
+                                               <?php if 
(check_user_privileges()): ?>
+                                               <li><a href="<?php echo 
get_uri('/accounts/') ; ?>"><?php print __("Accounts"); ?></a></li>
+                                               <?php endif; ?>
+                                               <li><a href="<?php echo 
get_user_uri(username_from_sid($_COOKIE['AURSID'])) . 'edit/'; ?>"><?php print 
__(" My Account"); ?></a></li>
                                                <?php if 
(check_user_privileges()): ?><li><a href="<?php echo get_uri('/tu/'); ?>"><?php 
print __("Trusted User"); ?></a></li><?php endif; ?>
                                                <li><a href="<?php echo 
get_uri('/logout/'); ?>"><?php print __("Logout"); ?></a></li>
                                        <?php else: ?>
-- 
1.7.12

Reply via email to