diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-11 13:40:35 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-11 13:44:53 +0200 |
commit | bd9af5f8931c6ec2e282dda825c51bcdc7d4aa68 (patch) | |
tree | b0f65bf2b14f77b81f4a17fa39722e6fbbccba11 /web/lib/aurjson.class.php | |
parent | d1fd6f4897b1e7891375c3b170e2cd8854836517 (diff) | |
download | aur-bd9af5f8931c6ec2e282dda825c51bcdc7d4aa68.tar.gz aur-bd9af5f8931c6ec2e282dda825c51bcdc7d4aa68.tar.xz |
Reintroduce the URLPath field
In commit 74edb6f (Use Git repositories to store packages, 2014-06-06),
the URLPath field was dropped from RPC package results. Reintroduce the
field for backwards compatibility, even though it is no longer
recommended to use snapshot tarballs.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/lib/aurjson.class.php')
-rw-r--r-- | web/lib/aurjson.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php index 5fb89a9f..f25954c7 100644 --- a/web/lib/aurjson.class.php +++ b/web/lib/aurjson.class.php @@ -228,7 +228,7 @@ class AurJSON { $search_data = array(); while ($row = $result->fetch(PDO::FETCH_ASSOC)) { $resultcount++; - $pkgbase_name = $row['PackageBase']; + $row['URLPath'] = sprintf(config_get('options', 'snapshot_uri'), urlencode($row['PackageBase'])); /* * Unfortunately, mysql_fetch_assoc() returns |