Use URL rewriting for user editing page

Allows for easier account editing and saner URLs. Update account editing links
to use new URL.

Before:
AUR_URL/account/?Action=DisplayAccount&U=userfoo

After:
AUR_URL/account/userfoo/edit

Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
canyonknight 2012-09-12 17:32:43 -04:00 committed by Lukas Fleischer
parent 98b6ba9479
commit 5c0de7825d
2 changed files with 10 additions and 2 deletions

View file

@ -50,7 +50,7 @@ else:
print "&nbsp;";
else:
?>
<a href="<?php echo get_uri('/account/'); ?>?Action=DisplayAccount&amp;ID=<?php echo $row["ID"] ?>"><?php echo __("Edit") ?></a>
<a href="<?php echo get_user_uri($row["Username"]) . "edit/" ?>"><?php echo __("Edit") ?></a>
<?php endif; ?>
</td>
</tr>