When setting up and RSS feed using views, a call is made to category_rss_item. If the Category Display module is enabled, it causes a call to an undefined function as listed in the title, currently on line 618 in the latest alpha release, and the call is still present in the latest version in the repository. A google search of the funtion name will show several sites where this error is currently being generated.
Fix: Replace with updated call to correct new function name in category_display.module
Diff:
618c618
< $cont = category_display_cont_load($cat->cnid);
---
> $cont = category_display_get_container($cat->cnid);
Tests:
After change, RSS Feed created by Views now works properly and displays entries when browsed to.
Comments
Comment #1
gestahl commentedClarification:
The fix is to replace it with an updated call to the correct new function name which is located in category_display.module. The diff below is for category.module.
Comment #2
luckysmack commentedI had the same error and this fix worked great. Any way to get it commited?
Comment #3
Jaza commentedFix committed to HEAD. Thanks.
For submitting future code fixes, please read up on how to create patch files.