summaryrefslogtreecommitdiffstats
path: root/web/lib
diff options
context:
space:
mode:
Diffstat (limited to 'web/lib')
-rw-r--r--web/lib/pkgbasefuncs.inc.php4
-rw-r--r--web/lib/pkgreqfuncs.inc.php6
2 files changed, 5 insertions, 5 deletions
diff --git a/web/lib/pkgbasefuncs.inc.php b/web/lib/pkgbasefuncs.inc.php
index c597911..ec48314 100644
--- a/web/lib/pkgbasefuncs.inc.php
+++ b/web/lib/pkgbasefuncs.inc.php
@@ -540,7 +540,7 @@ function pkgbase_delete ($atype, $base_ids, $merge_base_id, $via) {
$dbh->exec($q);
if ($via) {
- pkgbase_close_request(intval($via));
+ pkgreq_close(intval($via));
}
return array(true, __("The selected packages have been deleted."));
@@ -598,7 +598,7 @@ function pkgbase_adopt ($atype, $base_ids, $action=true, $via) {
$dbh->exec($q);
if ($via) {
- pkgbase_close_request(intval($via));
+ pkgreq_close(intval($via));
}
if ($action) {
diff --git a/web/lib/pkgreqfuncs.inc.php b/web/lib/pkgreqfuncs.inc.php
index 7ba596a..47758c3 100644
--- a/web/lib/pkgreqfuncs.inc.php
+++ b/web/lib/pkgreqfuncs.inc.php
@@ -7,7 +7,7 @@ include_once("pkgbasefuncs.inc.php");
*
* @return array List of pacakge requests with details
*/
-function pkgbase_request_list() {
+function pkgreq_list() {
$dbh = DB::connect();
$q = "SELECT PackageRequests.ID, ";
@@ -37,7 +37,7 @@ function pkgbase_request_list() {
*
* @return void
*/
-function pkgbase_file_request($ids, $type, $merge_into, $comments) {
+function pkgreq_file($ids, $type, $merge_into, $comments) {
global $AUR_LOCATION;
global $AUR_REQUEST_ML;
@@ -129,7 +129,7 @@ function pkgbase_file_request($ids, $type, $merge_into, $comments) {
*
* @return void
*/
-function pkgbase_close_request($id) {
+function pkgreq_close($id) {
global $AUR_LOCATION;
global $AUR_REQUEST_ML;