summaryrefslogtreecommitdiffstats
path: root/web/html/account.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2012-03-22 15:15:57 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2012-03-24 10:34:35 +0100
commite9d8e9b8c074421d15103fd66112dea78800e72a (patch)
tree422792fb697f78e554dc93d682f364cf559a2508 /web/html/account.php
parentcf2f66751238a5c956c69d3852df74c8e9bbbe52 (diff)
downloadaur-e9d8e9b8c074421d15103fd66112dea78800e72a.tar.gz
aur-e9d8e9b8c074421d15103fd66112dea78800e72a.tar.xz
Support canonical links to accounts
Addresses FS#9582 and FS#21600. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/account.php')
-rw-r--r--web/html/account.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/web/html/account.php b/web/html/account.php
index 339316b0..f17ba48c 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -75,7 +75,11 @@ if (isset($_COOKIE["AURSID"])) {
$q = "SELECT Users.*, AccountTypes.AccountType ";
$q.= "FROM Users, AccountTypes ";
$q.= "WHERE AccountTypes.ID = Users.AccountTypeID ";
- $q.= "AND Users.ID = ".intval(in_request("ID"));
+ if (isset($_REQUEST["ID"])) {
+ $q.= "AND Users.ID = ".intval(in_request("ID"));
+ } else {
+ $q.= "AND Users.Username = '".db_escape_string(in_request("U")) . "'";
+ }
$result = db_query($q, $dbh);
if (!mysql_num_rows($result)) {
print __("Could not retrieve information for the specified user.");