diff options
author | Callan Barrett <wizzomafizzo@gmail.com> | 2008-06-08 15:21:19 +0200 |
---|---|---|
committer | Callan Barrett <wizzomafizzo@gmail.com> | 2008-06-09 13:49:07 +0200 |
commit | b2435996ddf6d5e92b15f7c950d7877eb6e1c15a (patch) | |
tree | 497648076726d5927365a7fed48cf5c57d171b58 /web/html/pkgsubmit.php | |
parent | bbce51e419536070307418605af121ce2b94da60 (diff) | |
download | aur-b2435996ddf6d5e92b15f7c950d7877eb6e1c15a.tar.gz aur-b2435996ddf6d5e92b15f7c950d7877eb6e1c15a.tar.xz |
Fix FS#10016
Fix entry of URLPath and FSPath to be actual locations, fixes RPC results
Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
Diffstat (limited to 'web/html/pkgsubmit.php')
-rw-r--r-- | web/html/pkgsubmit.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index ae5b93a5..38e8cca6 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -372,9 +372,9 @@ if ($_COOKIE["AURSID"]) { $q.="Description='".mysql_real_escape_string($new_pkgbuild['pkgdesc'])."', "; $q.="URL='".mysql_real_escape_string($new_pkgbuild['url'])."', "; $q.="LocationID=2, "; - $fspath=INCOMING_DIR.$pkg_name."/".$_FILES["pfile"]["name"]; + $fspath=INCOMING_DIR.$pkg_name."/".$pkg_name.".tar.gz"; $q.="FSPath='".mysql_real_escape_string($fspath)."', "; - $urlpath=URL_DIR.$pkg_name."/".$_FILES["pfile"]["name"]; + $urlpath=URL_DIR.$pkg_name."/".$pkg_name.".tar.gz"; $q.="OutOfDate=0, "; $q.="URLPath='".mysql_real_escape_string($urlpath)."' "; $q.="WHERE ID = " . $pdata["ID"]; @@ -444,9 +444,9 @@ if ($_COOKIE["AURSID"]) { $q.= "UNIX_TIMESTAMP(), "; $q.= uid_from_sid($_COOKIE["AURSID"]).", "; $q.= uid_from_sid($_COOKIE["AURSID"]).", '"; - $fspath=INCOMING_DIR.$pkg_name."/".$_FILES["pfile"]["name"]; + $fspath=INCOMING_DIR.$pkg_name."/".$pkg_name.".tar.gz"; $q.= mysql_real_escape_string($fspath)."', '"; - $urlpath=URL_DIR.$pkg_name."/".$_FILES["pfile"]["name"]; + $urlpath=URL_DIR.$pkg_name."/".$pkg_name.".tar.gz"; $q.= mysql_real_escape_string($urlpath)."')"; $result = db_query($q, $dbh); # print $result . "<br>"; |