diff options
author | simo <simo> | 2005-11-27 05:05:27 +0100 |
---|---|---|
committer | simo <simo> | 2005-11-27 05:05:27 +0100 |
commit | 70af7c7d5c5945039f494ca5f9e435bc515db18e (patch) | |
tree | 009c36a334c9f4cca8819ce29c698eaff5098e8d /web/lib/aur.inc | |
parent | fbd7b5a9d4119cf53629f2b01a2a6ca39c29ea07 (diff) | |
download | aur-70af7c7d5c5945039f494ca5f9e435bc515db18e.tar.gz aur-70af7c7d5c5945039f494ca5f9e435bc515db18e.tar.xz |
add search by submitter functionality
Diffstat (limited to 'web/lib/aur.inc')
-rw-r--r-- | web/lib/aur.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/web/lib/aur.inc b/web/lib/aur.inc index ed2ff646..81e5a458 100644 --- a/web/lib/aur.inc +++ b/web/lib/aur.inc @@ -542,5 +542,24 @@ function rm_rf($dirname="") { return; } +# obtain the uid given a Users.Username +# +function uid_from_username($username="") +{ + if (!$username) { + return ""; + } + $dbh = db_connect(); + $q = "SELECT ID FROM Users WHERE Username = '".mysql_escape_string($username) + ."'"; + $result = db_query($q, $dbh); + if (!$result) { + return "None"; + } + $row = mysql_fetch_row($result); + + return $row[0]; +} + # vim: ts=2 sw=2 noet ft=php ?> |