Bryan,
A few weeks back we started to use this feature - very positive feedback
I got!
One improvement request was to include the Release field as well for the
RSS feed. Based on the patch below I found adding the following line
after the 'search_type'... line would enable RSS filtering on the
Release field:
'release' => $filter['cst_iss_pre_id']
Could you include this (or the proper solution) in the next
patches/releases of Eventum?
Thanks
Tibor
Bryan Alsdorf wrote:
> Barry,
>
> Barry Benowitz-CTR wrote:
>
>> I have just noticed that the RSS feed don't filter specifically when the
>> filter criteria is based upon one of the custom fields but I suspect
>> that it won't work with any search criteria. Is anyone else seeing that?
>> Is there a fix available?
>
>
> The feeds did filter on other, non custom fields and I just fixed the
> bug that was preventing custom field searches from working. This will
> be in our next release, but if you would like to use it now, the patch
> is below.
>
> Best Regards,
> /bryan
>
> --- 1.9/rss.php 2006-01-23 05:40:30 +01:00
> +++ 1.10/rss.php 2006-08-02 20:58:58 +02:00
> @@ -153,7 +153,9 @@
> 'status' => $filter['cst_iss_sta_id'],
> 'hide_closed' => $filter['cst_hide_closed'],
> 'sort_by' => $filter['cst_sort_by'],
> - 'sort_order' => $filter['cst_sort_order']
> + 'sort_order' => $filter['cst_sort_order'],
> + 'custom_field' => $filter['cst_custom_field'],
> + 'search_type' => $filter['cst_search_type']
> );
> $issues = Issue::getListing($filter['cst_prj_id'], $options, 0,
> 'ALL', TRUE);
> $issues = $issues['list'];
>