diff options
Diffstat (limited to 'web/lib/aur.inc.php')
-rw-r--r-- | web/lib/aur.inc.php | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php index b3a800c..e786e50 100644 --- a/web/lib/aur.inc.php +++ b/web/lib/aur.inc.php @@ -292,11 +292,11 @@ function html_footer($ver="") { * * @return int 0 if the user can't submit, 1 if the user can submit */ -function can_submit_pkg($name="", $sid="") { +function can_submit_pkgbase($name="", $sid="") { if (!$name || !$sid) {return 0;} $dbh = DB::connect(); $q = "SELECT MaintainerUID "; - $q.= "FROM Packages WHERE Name = " . $dbh->quote($name); + $q.= "FROM PackageBases WHERE Name = " . $dbh->quote($name); $result = $dbh->query($q); $row = $result->fetch(PDO::FETCH_NUM); @@ -531,17 +531,6 @@ function end_atomic_commit() { } /** - * - * Determine the row ID for the most recently insterted row - * - * @return string The ID of the last inserted row - */ -function last_insert_id() { - $dbh = DB::connect(); - return $dbh->lastInsertId(); -} - -/** * Determine package information for latest package * * @param int $numpkgs Number of packages to get information on |