diff options
Diffstat (limited to 'class')
-rw-r--r-- | class/Parser.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/class/Parser.php b/class/Parser.php index 79d1282..365f0f8 100644 --- a/class/Parser.php +++ b/class/Parser.php @@ -218,6 +218,7 @@ class Parser foreach ($primary->package as $package) { if ($package->attributes()=='rpm') { $ver = $package->version->attributes(); + $loc = $package->location->attributes(); $input = array( 'repo_main' => $row['main'], @@ -227,6 +228,7 @@ class Parser 'ver' => $ver['ver'], 'rel' => $ver['rel'], 'summary' => $package->summary, + 'location' => $loc['href'], 'url' => $package->url ); if ($rpmtable->add($input)) { |