summaryrefslogtreecommitdiffstats
path: root/web/lib/pkgfuncs.inc.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2011-07-31 19:04:59 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2011-08-11 16:17:07 +0200
commit0ac8970b62ad728bc0988e7e0a7f16efe78ea6cd (patch)
tree031ca86c87168d2439d3daba78bf405ae5b03f55 /web/lib/pkgfuncs.inc.php
parent6ae2bc514f61d3e56d008cd1901d91bdbc6752d2 (diff)
downloadaur-0ac8970b62ad728bc0988e7e0a7f16efe78ea6cd.tar.gz
aur-0ac8970b62ad728bc0988e7e0a7f16efe78ea6cd.tar.xz
Rename package_exists() to pkgid_from_name()
Describe what this function actually does: Return the ID of a package with a given name and return NULL if such a package doesn't exist. The function name is chosen in a fashion similar to other functions from "pkgfuncs.inc.php" (pkgname_from_id(), pkgnotify_from_sid(), ...). Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/lib/pkgfuncs.inc.php')
-rw-r--r--web/lib/pkgfuncs.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/pkgfuncs.inc.php b/web/lib/pkgfuncs.inc.php
index 8cd1c611..bb5a592c 100644
--- a/web/lib/pkgfuncs.inc.php
+++ b/web/lib/pkgfuncs.inc.php
@@ -90,7 +90,7 @@ function pkgCategories() {
# check to see if the package name exists
#
-function package_exists($name="") {
+function pkgid_from_name($name="") {
if (!$name) {return NULL;}
$dbh = db_connect();
$q = "SELECT ID FROM Packages ";