|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-08-16 12:14 UTC] asnagy@php.net
Description: ------------ Can the Links in the RSS Release Feed point back to the appropriate download page instead of just back to the package page? Expected result: ---------------- <a href="http://pear.php.net/package/Structures_DataGrid/download/0.5.3">Structures_DataGrid 0.5.3</a> <a href="http://pear.php.net/package/Structures_DataGrid/download/0.5.2">Structures_DataGrid 0.5.2</a> Actual result: -------------- <a href="http://pear.php.net/package/Structures_DataGrid">Structures_DataGrid 0.5.3</a> <a href="http://pear.php.net/package/Structures_DataGrid">Structures_DataGrid 0.5.2</a> PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 14:00:01 2025 UTC |
I was thinking of something like Index: Common.php =================================================================== RCS file: /repository/pearweb/include/Damblan/RSS/Common.php,v retrieving revision 1.10 diff -u -r1.10 Common.php --- Common.php 20 Mar 2004 17:35:39 -0000 1.10 +++ Common.php 28 Oct 2004 20:09:05 -0000 @@ -121,7 +121,7 @@ function __addItems($list) { foreach ($list as $item) { $date = date("Y-m-d\TH:i:s-05:00", strtotime($item['releasedate'])); - $node = $this->newItem($item['name'] . " " . $item['version'], "http://pear.php.net/package/" . $item['name'], $item['releasenotes'], $date); + $node = $this->newItem($item['name'] . " " . $item['version'], "http://pear.php.net/package/" . $item['name'] . "/download/" . $item['version'] . "/", $item['releasenotes'], $date); $this->addItem($node); } }